added simplecov and a new test

+ simplecov is a test coverage tool to show what code is covered and
  where holes are
+ added newest test to validate that the redirect url works as expected
This commit is contained in:
2023-10-03 18:29:03 -07:00
parent b3d5c70c8b
commit 81b12b5d6f
3 changed files with 22 additions and 0 deletions
+13
View File
@@ -13,6 +13,10 @@ Given('A link already exists with the url {string}') do |string|
@links.insert(url: string, code: "aaaaaa")
end
Given('A link already exists with the url {string} and code {string}') do |url, code|
@links.insert(url: url, code: code)
end
# WHEN
When('I click the {string} button') do |string|
@@ -23,6 +27,10 @@ When('I type {string} in the {string} field') do |text, field|
fill_in field, with: text
end
When('I visit the {string} location') do |string|
visit string
end
# THEN
Then('I should see text {string}') do |string|
@@ -45,6 +53,11 @@ Then('I should see the message {string}') do |message|
page.should have_selector '#message', text: message
end
Then('I should be redirected to {string}') do |string|
actual = URI.parse(current_url).to_s
location = actual.index(string)
location.should equal(0)
end
# AFTER
After('@db-test') do