* Initial automatic cleanup with rubocop * Fix syntax error introduced by rubocop * Cleanup seeds file * Cleanup lib folder * Exclude bin folder because it contains auto generated files * Make Rubocop a little bit more chatty * Block length should not include comments in the count * Cleanup config folder * Cleanup specs * Updated Rubocop version and generated a todo file * Fix broken ArticlesApi spec * Fix tests * Restored rubocop pre-commit hook
23 lines
585 B
Ruby
23 lines
585 B
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe "ArticlesApi", type: :request do
|
|
let(:user) { create(:user) }
|
|
let(:tag) { create(:tag) }
|
|
|
|
describe "GET /api/users" do
|
|
it "returns user objects" do
|
|
other_user = create(:user, tag_list: tag.name)
|
|
user.follow(tag)
|
|
sign_in user
|
|
get "/api/users?state=follow_suggestions"
|
|
expect(response.body).to include(other_user.name)
|
|
end
|
|
end
|
|
|
|
describe "GET /api/users/:id" do
|
|
it "returns user show object" do
|
|
get "/api/users/#{user.id}"
|
|
expect(response.body).to include(user.name)
|
|
end
|
|
end
|
|
end
|