Commit a75d1121 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Merge branch 'qa/rs-api-users-spec' into 'master'

Simplify users API QA spec

See merge request gitlab-org/gitlab-ce!19147
parents 35597a4c 5d2d2789
......@@ -17,17 +17,16 @@ module QA
get request.url, { params: { username: Runtime::User.name } }
expect_status(200)
expect(json_body).to be_an Array
expect(json_body.size).to eq(1)
expect(json_body.first[:username]).to eq Runtime::User.name
expect(json_body).to contain_exactly(
a_hash_including(username: Runtime::User.name)
)
end
scenario 'submit request with an invalid user name' do
get request.url, { params: { username: SecureRandom.hex(10) } }
expect_status(200)
expect(json_body).to be_an Array
expect(json_body.size).to eq(0)
expect(json_body).to eq([])
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment