提交 a4678edd 编写于 作者: T tiagonbotelho

moves let variable to it statement by using a local variable

上级 c4dc0f52
...@@ -82,12 +82,12 @@ describe API::API, api: true do ...@@ -82,12 +82,12 @@ describe API::API, api: true do
end end
context 'GET /projects?simple=true' do context 'GET /projects?simple=true' do
let(:keys) { ["id", "http_url_to_repo", "web_url", "name", "name_with_namespace", "path", "path_with_namespace", "permissions"] }
it 'should return a simplified version of all the projects' do it 'should return a simplified version of all the projects' do
expected_keys = ["id", "http_url_to_repo", "web_url", "name", "name_with_namespace", "path", "path_with_namespace", "permissions"]
get api('/projects?simple=true', user) get api('/projects?simple=true', user)
expect(response).to have_http_status(200) expect(response).to have_http_status(200)
expect(json_response).to be_an Array expect(json_response).to be_an Array
expect(json_response.first.keys).to match_array keys expect(json_response.first.keys).to match_array expected_keys
end end
end end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册