bddfire 1.6.4 → 1.6.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YjI3ZmU5Njc5MjQ4NjA1NzczNGU1NjMwMWZmZTE1ZDNjYWRkOGZiNQ==
4
+ NmMxNTkyNGRlMzZhNzgyNmFlNTU5YWY3MzQ5ODM4N2QyYjVjYjZhNw==
5
5
  data.tar.gz: !binary |-
6
- M2RiMjE4NWM4N2Q1ZTgxZjQ1ODUzNDM2OTI1M2U3ZDY1MWFkY2NiZQ==
6
+ Mjg1MTMzZTZmZThkYmRiODE4OWQxOGFlMWYxNDdkZjhiYjg4YjViZA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MWJjZjA1OTdjMGQ4NTU1MDkyMmE5NWU5N2VmMjk4MDlhODc3ODMwMjU0Yzk2
10
- Y2YzMmUxOGQ0ZWE2ZDYwNGM0Zjg5MTQ3Y2E0M2I2YjYzNzNlNjViMTJlNzk3
11
- NTc3NmI1MWVlMWI2YTM5Y2U5ODk2N2RhYzQxMDAzMjlmZmVkOGE=
9
+ Mjk5ZDBhNzU3ZTliNTJiZTZlNzRjMTc4NzU1MGZhNmI0NzhmZjVkOTFmMWNj
10
+ OWU1ZjBkZjZmZWZhNmYzYmJjMWUyM2E3MGY1NDc2MjA1NmVjZjIzY2MyODgx
11
+ OTRjNGM1NTg5MDAwYTI5NmIxOWZiMDQxZTkwMjJlMTg3N2E5Nzg=
12
12
  data.tar.gz: !binary |-
13
- NGM1MjZmMjQwMGY2N2UwYjhmMDU0Njg4NzRiYWE5ZDM4ZjQyMDI1NjRlMzk1
14
- MTdmZTUwZjIwNTczM2ViYWNlMWI4N2ZkYmIxOTNmMDVlNmE0ZDZkZTc2OWMx
15
- NmJkNjMwYzQ0Y2I3MjEwMTA2ODc0ZGM2NWFlYWYwOTdhODhiODc=
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
@@ -5,5 +5,4 @@ require 'rspec'
5
5
  require 'selenium-webdriver'
6
6
  require 'open-uri'
7
7
  require 'rbconfig'
8
- require 'appium_lib'
9
8
  include RbConfig
@@ -1,3 +1,3 @@
1
1
  module BDDfire
2
- VERSION = "1.6.4"
2
+ VERSION = "1.6.5"
3
3
  end
File without changes
@@ -3,7 +3,6 @@ require_relative 'required_files'
3
3
  require "Capybara/cucumber"
4
4
  require "rspec"
5
5
  require 'selenium-webdriver'
6
- require 'poltergeist'
7
6
 
8
7
 
9
8
  Given(/^I am on "(.*?)"$/) do |url|
@@ -1,7 +1,7 @@
1
- Feature: Google Search to explore poltergiest
1
+ Feature: Google Search to explore BDDfire
2
2
 
3
3
 
4
4
  Scenario: View home page
5
- Given I am on the home page
6
- #When I fill in "q" with "shashi"
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
- When /^I fill in "([^"]*)" with "([^"]*)"$/ do |element, text|
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
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/mobile_steps.rb
165
- - lib/bddfire/mobile/required_files.rb
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/required_files.rb
169
- - lib/bddfire/web/web_steps.rb
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
@@ -1,2 +0,0 @@
1
- require 'net/https'
2
- require_relative 'required_files'
@@ -1,9 +0,0 @@
1
- require 'rubygems'
2
- require 'cucumber'
3
- require 'capybara'
4
- require 'rspec'
5
- require 'selenium-webdriver'
6
- require 'poltergeist'
7
- require 'open-uri'
8
- require 'rbconfig'
9
- include RbConfig