Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'features/steps/project/builds/badge.rb')
-rw-r--r--features/steps/project/builds/badge.rb13
1 files changed, 9 insertions, 4 deletions
diff --git a/features/steps/project/builds/badge.rb b/features/steps/project/builds/badge.rb
index 3cf1e2cab5e..0ceb4ddcd25 100644
--- a/features/steps/project/builds/badge.rb
+++ b/features/steps/project/builds/badge.rb
@@ -8,18 +8,23 @@ class Spinach::Features::ProjectBuildsBadge < Spinach::FeatureSteps
end
step 'I should see a build success badge' do
- expect(svg.at('text:contains("success")')).to be_truthy
+ expect_badge('success')
end
step 'I should see a build failed badge' do
- expect(svg.at('text:contains("failed")')).to be_truthy
+ expect_badge('failed')
end
- step 'build badge is a svg image' do
- expect(page.response_headers).to include('Content-Type' => 'image/svg+xml')
+ step 'I should see a build running badge' do
+ expect_badge('running')
end
def svg
Nokogiri::HTML.parse(page.body)
end
+
+ def expect_badge(status)
+ expect(page.response_headers).to include('Content-Type' => 'image/svg+xml')
+ expect(svg.at(%Q{text:contains("#{status}")})).to be_truthy
+ end
end