bddfire 1.6.4 → 1.6.5
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/mobile_methods.rb +0 -0
- data/lib/bddfire/mobile_steps.rb +18 -0
- data/lib/bddfire/{mobile/required_files.rb → required_files.rb} +0 -1
- data/lib/bddfire/version.rb +1 -1
- data/lib/bddfire/web/web_methods.rb +0 -0
- data/lib/bddfire/{web/web_steps.rb → web_steps.rb} +0 -1
- data/scaffold/features/google.feature +3 -3
- data/scaffold/features/step_definitions/google_steps.rb +1 -10
- metadata +6 -5
- data/lib/bddfire/mobile/mobile_steps.rb +0 -2
- data/lib/bddfire/web/required_files.rb +0 -9
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NmMxNTkyNGRlMzZhNzgyNmFlNTU5YWY3MzQ5ODM4N2QyYjVjYjZhNw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
Mjg1MTMzZTZmZThkYmRiODE4OWQxOGFlMWYxNDdkZjhiYjg4YjViZA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
Mjk5ZDBhNzU3ZTliNTJiZTZlNzRjMTc4NzU1MGZhNmI0NzhmZjVkOTFmMWNj
|
10
|
+
OWU1ZjBkZjZmZWZhNmYzYmJjMWUyM2E3MGY1NDc2MjA1NmVjZjIzY2MyODgx
|
11
|
+
OTRjNGM1NTg5MDAwYTI5NmIxOWZiMDQxZTkwMjJlMTg3N2E5Nzg=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YmE3OWZiZjU1NTQyZmQxYjVlNWE5YmE5M2UzOWVmMjE1OTgyYmY0Njc3ZjM3
|
14
|
+
OGMxYjI0YjQ2YzJkNzFkNzk0NTg2NTE0YmI0MzhjZGI3Y2NlMzkzY2I0NGE0
|
15
|
+
MGFiMjM3NjlkMGYyNWQzNGY0ZTBhZTY1ZjhlNzhhMzIwNDdhMmM=
|
File without changes
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'net/https'
|
2
|
+
require_relative 'required_files'
|
3
|
+
require "Capybara/cucumber"
|
4
|
+
require "rspec"
|
5
|
+
require 'selenium-webdriver'
|
6
|
+
|
7
|
+
|
8
|
+
Given(/^I am on "(.*?)"$/) do |url|
|
9
|
+
visit(url)
|
10
|
+
end
|
11
|
+
|
12
|
+
When(/^I fill in "(.*?)" with "(.*?)"$/) do |element, text|
|
13
|
+
fill_in element, with: text
|
14
|
+
end
|
15
|
+
|
16
|
+
Then(/^I should see "(.*?)"$/) do |text|
|
17
|
+
page.should have_content text
|
18
|
+
end
|
data/lib/bddfire/version.rb
CHANGED
File without changes
|
@@ -1,7 +1,7 @@
|
|
1
|
-
Feature: Google Search to explore
|
1
|
+
Feature: Google Search to explore BDDfire
|
2
2
|
|
3
3
|
|
4
4
|
Scenario: View home page
|
5
|
-
Given I am on
|
6
|
-
|
5
|
+
Given I am on "www.google.com"
|
6
|
+
When I fill in "q" with "shashi"
|
7
7
|
Then I should see "Sign in"
|
@@ -1,12 +1,3 @@
|
|
1
1
|
require 'bddfire'
|
2
|
-
Given(/^I am on the home page$/) do
|
3
|
-
visit "http://www.google.com"
|
4
|
-
end
|
5
2
|
|
6
|
-
|
7
|
-
fill_in element, with: text
|
8
|
-
end
|
9
|
-
|
10
|
-
Then(/^I should see "(.*?)"$/) do |text|
|
11
|
-
page.should have_content text
|
12
|
-
end
|
3
|
+
# Implement your custom steps here if not in the BDDfire
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bddfire
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shashikant Jagtap
|
@@ -161,12 +161,13 @@ files:
|
|
161
161
|
- lib/bddfire.rb
|
162
162
|
- lib/bddfire/app.rb
|
163
163
|
- lib/bddfire/extensions/string.rb
|
164
|
-
- lib/bddfire/mobile/
|
165
|
-
- lib/bddfire/
|
164
|
+
- lib/bddfire/mobile/mobile_methods.rb
|
165
|
+
- lib/bddfire/mobile_steps.rb
|
166
|
+
- lib/bddfire/required_files.rb
|
166
167
|
- lib/bddfire/tasks.rb
|
167
168
|
- lib/bddfire/version.rb
|
168
|
-
- lib/bddfire/web/
|
169
|
-
- lib/bddfire/
|
169
|
+
- lib/bddfire/web/web_methods.rb
|
170
|
+
- lib/bddfire/web_steps.rb
|
170
171
|
- scaffold/.relish
|
171
172
|
- scaffold/.rubocop.yml
|
172
173
|
- scaffold/.ruby-version
|