ensl.org/spec/services/api/v1/users_collection_spec.rb
Michael Senn f390c1b38c Adjust user API specs to expect users without assigned teams.
In  d5d804a56f, the user API was changed to
also return users without an assigned team, but specs were not adjusted.
2017-02-24 17:53:25 +01:00

31 lines
709 B
Ruby
Executable file

require "spec_helper"
describe Api::V1::UsersCollection do
let(:collection) { Api::V1::UsersCollection.new }
describe "#execute_query" do
describe "when there are users with no teams" do
before do
3.times { create(:user) }
end
it "returns 3 results" do
expect(collection.execute_query.size).to eq(3)
end
end
describe "when there are some users with teams" do
before do
3.times { create(:user_with_team) }
end
it "returns 3 results" do
expect(collection.execute_query.size).to eq(3)
end
it "returns 6 columns" do
expect(collection.execute_query.first.size).to eq(6)
end
end
end
end