Skip to content
Snippets Groups Projects
Commit f0e3076a authored by Shinya Maeda's avatar Shinya Maeda
Browse files

'to be > 0' to 'not_to be_empty'. 'to eq(0)' to 'to be_empty'

parent 974c3c13
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -50,7 +50,7 @@ describe API::Pipelines do
 
expect(response).to have_http_status(200)
expect(response).to include_pagination_headers
expect(json_response.count).to be > 0
expect(json_response).not_to be_empty
json_response.each { |r| expect(r['status']).to eq(target) }
end
end
Loading
Loading
@@ -62,7 +62,7 @@ describe API::Pipelines do
 
expect(response).to have_http_status(200)
expect(response).to include_pagination_headers
expect(json_response.count).to be > 0
expect(json_response).not_to be_empty
json_response.each { |r| expect(r['status']).to be_in(%w[success failed canceled]) }
end
end
Loading
Loading
@@ -73,7 +73,7 @@ describe API::Pipelines do
 
expect(response).to have_http_status(200)
expect(response).to include_pagination_headers
expect(json_response.count).to be > 0
expect(json_response).not_to be_empty
expect(json_response.last['sha']).to eq(Ci::Pipeline.where(tag: false).last.sha)
end
end
Loading
Loading
@@ -84,7 +84,7 @@ describe API::Pipelines do
 
expect(response).to have_http_status(200)
expect(response).to include_pagination_headers
expect(json_response.count).to be > 0
expect(json_response).not_to be_empty
expect(json_response.last['sha']).to eq(Ci::Pipeline.where(tag: true).last.sha)
end
end
Loading
Loading
@@ -106,7 +106,7 @@ describe API::Pipelines do
 
expect(response).to have_http_status(200)
expect(response).to include_pagination_headers
expect(json_response.count).to be > 0
expect(json_response).not_to be_empty
json_response.each { |r| expect(r['status']).to eq(target) }
end
end
Loading
Loading
@@ -128,7 +128,7 @@ describe API::Pipelines do
 
expect(response).to have_http_status(200)
expect(response).to include_pagination_headers
expect(json_response.count).to be > 0
expect(json_response).not_to be_empty
json_response.each { |r| expect(r['ref']).to eq('master') }
end
end
Loading
Loading
@@ -139,7 +139,7 @@ describe API::Pipelines do
 
expect(response).to have_http_status(200)
expect(response).to include_pagination_headers
expect(json_response.count).to eq(0)
expect(json_response).to be_empty
end
end
end
Loading
Loading
@@ -161,7 +161,7 @@ describe API::Pipelines do
 
expect(response).to have_http_status(200)
expect(response).to include_pagination_headers
expect(json_response.count).to eq(0)
expect(json_response).to be_empty
end
end
end
Loading
Loading
@@ -183,7 +183,7 @@ describe API::Pipelines do
 
expect(response).to have_http_status(200)
expect(response).to include_pagination_headers
expect(json_response.count).to eq(0)
expect(json_response).to be_empty
end
end
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment