bddfire 1.7.3 → 1.7.4
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 +4 -4
- data/bin/bddfire +8 -9
- data/lib/bddfire/version.rb +1 -1
- data/lib/bddfire/web_steps.rb +13 -13
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5721b3b815aca354b144880431673d1135c4baf8
|
4
|
+
data.tar.gz: e5b97b5cdc0491ca2287a525179b9b2e7292fe6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d5cec9dd89c5cc3251ac162807e8acb540cc8b2706edc87776b917f7ce6b1ae2abd19bdcdc5ced5e40c6ebd768ce88031250c155a799a7db0f9de8c6e1252a5
|
7
|
+
data.tar.gz: 19cffb71485c69d659ca5c32622c74b1db9aa759b089509fbf4f96b28bc7e3368ad54c71aec31f8130ad7b7a6fd971ae5ecc51c0b60e4aa6e8079778ddda8082
|
data/bin/bddfire
CHANGED
@@ -2,12 +2,11 @@
|
|
2
2
|
|
3
3
|
lib_dir = File.expand_path("../lib", File.dirname(__FILE__))
|
4
4
|
$:.unshift lib_dir unless $:.include?(lib_dir)
|
5
|
-
|
6
|
-
require '
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
@
|
11
|
-
|
12
|
-
|
13
|
-
FileUtils.cp_r(@source_dir, @root_dir)
|
5
|
+
# require 'fileutils'
|
6
|
+
require 'bddfire'
|
7
|
+
BDDfire::App.start
|
8
|
+
|
9
|
+
# @root_dir =File.join(FileUtils.pwd, "framework")
|
10
|
+
# @source_dir = File.join(File.dirname(__FILE__), '..', 'scaffold')
|
11
|
+
#
|
12
|
+
# FileUtils.cp_r(@source_dir, @root_dir)
|
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
|