bddfire 1.6.8 → 1.6.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/lib/bddfire/mobile_steps.rb +13 -13
- data/lib/bddfire/version.rb +1 -1
- data/lib/bddfire/web_steps.rb +13 -13
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NjY4MmM0MGRlYTRhMDllMzgxNjQ3ZDY2MjExMGNhNGJhNWU3ZWQ4MQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YmIwZWRmNjA2YWI1YWZiYzhkZjhjNTUxODE1MzdmY2JjYTY5NzBjZA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZTZkMzBjM2VhYzRlNjM2ZjE4YzQwYTJmMGIxZGZiYzMwZmE2Y2IyOTkzOWMx
|
10
|
+
ZTE2YTkzNTZkMzNmMzg1Yzk0OWU2OGM1OTUwMjhhNTQ4MzA0NmJjNzA5MGIz
|
11
|
+
ZGZkNTIzZDUwODU5ZTZjN2JjNjIwNjM1N2IzM2I3YTE0ODU2MDY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
Y2I5ZTZkZGM1MTgyNmUwYzg5MGM3ZjMxZThjMmNiNmIzMzA0YjhkMTA3NGQ1
|
14
|
+
ZDliMGNhZDE3ODUwOTQxMDQxMzFmNDNmNjhkOWY3OGViNDkyZGNmOTBkMzlk
|
15
|
+
YjA1Y2YxMGQ2ODRlNzI5MjM0NjNiYWU2MTBkNWZjNTIxZjU1MjQ=
|
data/lib/bddfire/mobile_steps.rb
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
require_relative 'mobile/mobile_methods'
|
2
|
-
|
3
|
-
Given(/^I am on "(.*?)"$/) do |url|
|
4
|
-
|
5
|
-
end
|
6
|
-
|
7
|
-
When(/^I fill in "(.*?)" with "(.*?)"$/) do |element, text|
|
8
|
-
|
9
|
-
end
|
10
|
-
|
11
|
-
Then(/^I should see "(.*?)"$/) do |text|
|
12
|
-
|
13
|
-
end
|
1
|
+
# require_relative 'mobile/mobile_methods'
|
2
|
+
#
|
3
|
+
# Given(/^I am on "(.*?)"$/) do |url|
|
4
|
+
# visit(url)
|
5
|
+
# end
|
6
|
+
#
|
7
|
+
# When(/^I fill in "(.*?)" with "(.*?)"$/) do |element, text|
|
8
|
+
# fill_in element, with: text
|
9
|
+
# end
|
10
|
+
#
|
11
|
+
# Then(/^I should see "(.*?)"$/) do |text|
|
12
|
+
# page.should have_content text
|
13
|
+
# end
|
data/lib/bddfire/version.rb
CHANGED
data/lib/bddfire/web_steps.rb
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
require_relative 'web/web_methods'
|
2
|
-
|
3
|
-
Given(/^I am on "(.*?)"$/) do |url|
|
4
|
-
|
5
|
-
end
|
6
|
-
|
7
|
-
When(/^I fill in "(.*?)" with "(.*?)"$/) do |element, text|
|
8
|
-
|
9
|
-
end
|
10
|
-
|
11
|
-
Then(/^I should see "(.*?)"$/) do |text|
|
12
|
-
|
13
|
-
end
|
1
|
+
# require_relative 'web/web_methods'
|
2
|
+
#
|
3
|
+
# Given(/^I am on "(.*?)"$/) do |url|
|
4
|
+
# visit(url)
|
5
|
+
# end
|
6
|
+
#
|
7
|
+
# When(/^I fill in "(.*?)" with "(.*?)"$/) do |element, text|
|
8
|
+
# fill_in element, with: text
|
9
|
+
# end
|
10
|
+
#
|
11
|
+
# Then(/^I should see "(.*?)"$/) do |text|
|
12
|
+
# page.should have_content text
|
13
|
+
# end
|