spreewald 1.8.0 → 1.9.0

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.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/lib/spreewald/development_steps.rb +1 -0
  3. data/lib/spreewald/web_steps.rb +2 -1
  4. data/lib/spreewald_support/version.rb +1 -1
  5. data/tests/rails-2.3/Gemfile +0 -1
  6. data/tests/rails-2.3/Gemfile.lock +3 -12
  7. data/tests/rails-2.3/config/cucumber.yml +2 -0
  8. data/tests/rails-2.3/config/database.yml +3 -0
  9. data/tests/rails-2.3/features/support/paths.rb +16 -0
  10. data/tests/rails-2.3/features/support/selectors.rb +43 -0
  11. data/tests/rails-3.2/capybara-1/Gemfile +0 -1
  12. data/tests/rails-3.2/capybara-1/Gemfile.lock +3 -12
  13. data/tests/rails-3.2/capybara-1/config/cucumber.yml +2 -0
  14. data/tests/rails-3.2/capybara-1/config/database.yml +3 -0
  15. data/tests/rails-3.2/capybara-1/features/support/paths.rb +16 -0
  16. data/tests/rails-3.2/capybara-1/features/support/selectors.rb +43 -0
  17. data/tests/rails-3.2/capybara-2/Gemfile +0 -2
  18. data/tests/rails-3.2/capybara-2/Gemfile.lock +3 -4
  19. data/tests/rails-3.2/capybara-2/Rakefile +18 -0
  20. metadata +3 -29
  21. data/tests/rails-2.3/app +0 -1
  22. data/tests/rails-2.3/config/cucumber.yml +0 -1
  23. data/tests/rails-2.3/config/database.yml +0 -1
  24. data/tests/rails-2.3/db +0 -1
  25. data/tests/rails-2.3/features/shared +0 -1
  26. data/tests/rails-2.3/features/support/paths.rb +0 -1
  27. data/tests/rails-2.3/features/support/selectors.rb +0 -1
  28. data/tests/rails-2.3/public +0 -1
  29. data/tests/rails-3.2/capybara-1/app +0 -1
  30. data/tests/rails-3.2/capybara-1/config/cucumber.yml +0 -1
  31. data/tests/rails-3.2/capybara-1/config/database.yml +0 -1
  32. data/tests/rails-3.2/capybara-1/db +0 -1
  33. data/tests/rails-3.2/capybara-1/features/shared +0 -1
  34. data/tests/rails-3.2/capybara-1/features/support/paths.rb +0 -1
  35. data/tests/rails-3.2/capybara-1/features/support/selectors.rb +0 -1
  36. data/tests/rails-3.2/capybara-1/public +0 -1
  37. data/tests/rails-3.2/capybara-2/Rakefile +0 -1
  38. data/tests/rails-3.2/capybara-2/app +0 -1
  39. data/tests/rails-3.2/capybara-2/config +0 -1
  40. data/tests/rails-3.2/capybara-2/db +0 -1
  41. data/tests/rails-3.2/capybara-2/features +0 -1
  42. data/tests/rails-3.2/capybara-2/public +0 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e1fe123d7a4f0dad221c4368017b50dd654ac0b1
4
- data.tar.gz: 9f935a997942d4ec34458a4741a27fa04a04d2a9
3
+ metadata.gz: f3c56dd8ef2e393eace954addf7b6666fc03b2e3
4
+ data.tar.gz: 6fe8ef731988a0bf65b95c42acbe39b961b4ad0c
5
5
  SHA512:
6
- metadata.gz: bbdb9686c3ecf363205233424d492ccd1792381f0d08a65b8b6a3d3a79a104ad172ad95ccdc65310b6477b36447e78ef2f5e8aa8cfc23f87a34a1e8f39a0291e
7
- data.tar.gz: fb68b75e0e9c849fb88450d26785f9e62dbc3a15abab2a04e3710a763ff93e701ebf08a69eddf4c25123eace08d5374ae18742a8cbd245057cea8a6a12508235
6
+ metadata.gz: cd7ce50e5243cd94cd94e933516e13137ea1f9cfa2cff24611f797bcdee7c411d94c0ece31a1a27502b07ad075b5bc86ac643f52fe0c108ce2219225922e4354
7
+ data.tar.gz: 19e173c078141ddaa7dc4aeecde1c4ee4b1aea0cc50597dc57cc0acc0d361399f70a85e304ce2486f0e7004e9f72f3d43e1841ba87f78ed56cd8f819ac77196d
@@ -7,6 +7,7 @@ end.overridable
7
7
 
8
8
  # See "Then console"
9
9
  Then 'debugger' do
10
+ warn $/, '[DEPRECATED] Prefer using "Then console"'
10
11
  step 'console'
11
12
  end.overridable
12
13
 
@@ -40,8 +40,9 @@ require 'cgi'
40
40
  # Then I should see "some text" within ".page_body"
41
41
  When /^(.*) within (.*[^:])$/ do |nested_step, parent|
42
42
  patiently do
43
- with_scope(parent) { step(nested_step) }
43
+ page.should have_css(_selector_for(parent))
44
44
  end
45
+ with_scope(parent) { step(nested_step) }
45
46
  end.overridable(:priority => 10)
46
47
 
47
48
  # nodoc
@@ -1,3 +1,3 @@
1
1
  module Spreewald
2
- VERSION = '1.8.0'
2
+ VERSION = '1.9.0'
3
3
  end
@@ -3,7 +3,6 @@ source 'https://rubygems.org'
3
3
  gem 'rails', '~>2.3'
4
4
 
5
5
  gem "sqlite3", :platform=>:ruby
6
- gem 'ruby-debug', :platforms => :ruby_18
7
6
  gem 'database_cleaner'
8
7
  gem 'selenium-webdriver', '>=2.35.0'
9
8
  gem "capybara", "1.1.1"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- spreewald (1.8.0)
4
+ spreewald (1.9.0)
5
5
  cucumber
6
6
  cucumber_priority
7
7
 
@@ -28,7 +28,6 @@ GEM
28
28
  xpath (~> 0.1.4)
29
29
  childprocess (0.3.9)
30
30
  ffi (~> 1.0, >= 1.0.11)
31
- columnize (0.3.6)
32
31
  cucumber (1.1.0)
33
32
  builder (>= 2.1.2)
34
33
  diff-lcs (>= 1.1.2)
@@ -37,7 +36,8 @@ GEM
37
36
  term-ansicolor (>= 1.0.6)
38
37
  cucumber-rails (0.3.2)
39
38
  cucumber (>= 0.8.0)
40
- cucumber_priority (0.2.0)
39
+ cucumber_priority (0.1.2)
40
+ activesupport
41
41
  cucumber
42
42
  database_cleaner (1.0.1)
43
43
  diff-lcs (1.2.4)
@@ -46,8 +46,6 @@ GEM
46
46
  json (>= 1.4.6)
47
47
  haml (2.2.24)
48
48
  json (1.8.0)
49
- linecache (0.46)
50
- rbx-require-relative (> 0.0.4)
51
49
  mime-types (1.23)
52
50
  multi_json (1.7.5)
53
51
  nokogiri (1.5.9)
@@ -62,16 +60,10 @@ GEM
62
60
  activesupport (= 2.3.18)
63
61
  rake (>= 0.8.3)
64
62
  rake (10.0.4)
65
- rbx-require-relative (0.0.9)
66
63
  rspec (1.3.2)
67
64
  rspec-rails (1.3.4)
68
65
  rack (>= 1.0.0)
69
66
  rspec (~> 1.3.1)
70
- ruby-debug (0.10.4)
71
- columnize (>= 0.1)
72
- ruby-debug-base (~> 0.10.4.0)
73
- ruby-debug-base (0.10.4)
74
- linecache (>= 0.3)
75
67
  rubyzip (0.9.9)
76
68
  selenium-webdriver (2.35.1)
77
69
  childprocess (>= 0.2.5)
@@ -97,7 +89,6 @@ DEPENDENCIES
97
89
  haml (< 3)
98
90
  rails (~> 2.3)
99
91
  rspec-rails (~> 1.3)
100
- ruby-debug
101
92
  selenium-webdriver (>= 2.35.0)
102
93
  spreewald!
103
94
  sqlite3
@@ -0,0 +1,2 @@
1
+ default: --require features --require features/shared features/shared
2
+
@@ -0,0 +1,3 @@
1
+ test:
2
+ adapter: sqlite3
3
+ database: ":memory:"
@@ -0,0 +1,16 @@
1
+ module NavigationHelpers
2
+
3
+ def path_to(page_name)
4
+ case page_name
5
+ when /^"(.*)"$/
6
+ $1
7
+
8
+ else
9
+ raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
10
+ "Now, go and add a mapping in #{__FILE__}"
11
+ end
12
+ end
13
+
14
+ end
15
+
16
+ World(NavigationHelpers)
@@ -0,0 +1,43 @@
1
+ module HtmlSelectorsHelpers
2
+ # Maps a name to a selector. Used primarily by the
3
+ #
4
+ # When /^(.+) within (.+)$/ do |step, scope|
5
+ #
6
+ # step definitions in web_steps.rb
7
+ #
8
+ def selector_for(locator)
9
+ case locator
10
+
11
+ when /^a panel?$/
12
+ '.panel'
13
+
14
+ when /^the timeline?$/
15
+ '.timeline'
16
+
17
+ # Add more mappings here.
18
+ # Here is an example that pulls values out of the Regexp:
19
+ #
20
+ # when /^the (notice|error|info) flash$/
21
+ # ".flash.#{$1}"
22
+
23
+ # You can also return an array to use a different selector
24
+ # type, like:
25
+ #
26
+ # when /the header/
27
+ # [:xpath, "//header"]
28
+
29
+ # This allows you to provide a quoted selector as the scope
30
+ # for "within" steps as was previously the default for the
31
+ # web steps:
32
+ when /^"(.+)"$/
33
+ $1
34
+
35
+ else
36
+ raise "Can't find mapping from \"#{locator}\" to a selector.\n" +
37
+ "Now, go and add a mapping in #{__FILE__}"
38
+ end
39
+ end
40
+
41
+ end
42
+
43
+ World(HtmlSelectorsHelpers)
@@ -2,7 +2,6 @@ source 'https://rubygems.org'
2
2
 
3
3
  gem 'rails', '~>3.2'
4
4
  gem "sqlite3", :platform=>:ruby
5
- gem 'ruby-debug', :platforms => :ruby_18
6
5
  gem 'database_cleaner'
7
6
  gem 'capybara', "~>1" # for ruby 1.8.7 compatibility
8
7
  gem 'cucumber-rails'
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../../..
3
3
  specs:
4
- spreewald (1.8.0)
4
+ spreewald (1.9.0)
5
5
  cucumber
6
6
  cucumber_priority
7
7
 
@@ -46,7 +46,6 @@ GEM
46
46
  xpath (~> 0.1.4)
47
47
  childprocess (0.3.9)
48
48
  ffi (~> 1.0, >= 1.0.11)
49
- columnize (0.3.6)
50
49
  cucumber (1.3.2)
51
50
  builder (>= 2.1.2)
52
51
  diff-lcs (>= 1.1.3)
@@ -58,7 +57,8 @@ GEM
58
57
  cucumber (>= 1.2.0)
59
58
  nokogiri (>= 1.5.0)
60
59
  rails (>= 3.0.0)
61
- cucumber_priority (0.2.0)
60
+ cucumber_priority (0.1.2)
61
+ activesupport
62
62
  cucumber
63
63
  database_cleaner (1.0.1)
64
64
  diff-lcs (1.2.4)
@@ -77,8 +77,6 @@ GEM
77
77
  i18n (0.6.1)
78
78
  journey (1.0.4)
79
79
  json (1.8.0)
80
- linecache (0.46)
81
- rbx-require-relative (> 0.0.4)
82
80
  mail (2.5.4)
83
81
  mime-types (~> 1.16)
84
82
  treetop (~> 1.4.8)
@@ -110,7 +108,6 @@ GEM
110
108
  rdoc (~> 3.4)
111
109
  thor (>= 0.14.6, < 2.0)
112
110
  rake (10.0.4)
113
- rbx-require-relative (0.0.9)
114
111
  rdoc (3.12.2)
115
112
  json (~> 1.4)
116
113
  rspec-core (2.13.1)
@@ -124,11 +121,6 @@ GEM
124
121
  rspec-core (~> 2.13.0)
125
122
  rspec-expectations (~> 2.13.0)
126
123
  rspec-mocks (~> 2.13.0)
127
- ruby-debug (0.10.4)
128
- columnize (>= 0.1)
129
- ruby-debug-base (~> 0.10.4.0)
130
- ruby-debug-base (0.10.4)
131
- linecache (>= 0.3)
132
124
  rubyzip (0.9.9)
133
125
  selenium-webdriver (2.34.0)
134
126
  childprocess (>= 0.2.5)
@@ -162,7 +154,6 @@ DEPENDENCIES
162
154
  haml-rails
163
155
  rails (~> 3.2)
164
156
  rspec-rails
165
- ruby-debug
166
157
  selenium-webdriver
167
158
  spreewald!
168
159
  sqlite3
@@ -0,0 +1,2 @@
1
+ default: --require features --require features/shared features/shared
2
+
@@ -0,0 +1,3 @@
1
+ test:
2
+ adapter: sqlite3
3
+ database: ":memory:"
@@ -0,0 +1,16 @@
1
+ module NavigationHelpers
2
+
3
+ def path_to(page_name)
4
+ case page_name
5
+ when /^"(.*)"$/
6
+ $1
7
+
8
+ else
9
+ raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
10
+ "Now, go and add a mapping in #{__FILE__}"
11
+ end
12
+ end
13
+
14
+ end
15
+
16
+ World(NavigationHelpers)
@@ -0,0 +1,43 @@
1
+ module HtmlSelectorsHelpers
2
+ # Maps a name to a selector. Used primarily by the
3
+ #
4
+ # When /^(.+) within (.+)$/ do |step, scope|
5
+ #
6
+ # step definitions in web_steps.rb
7
+ #
8
+ def selector_for(locator)
9
+ case locator
10
+
11
+ when /^a panel?$/
12
+ '.panel'
13
+
14
+ when /^the timeline?$/
15
+ '.timeline'
16
+
17
+ # Add more mappings here.
18
+ # Here is an example that pulls values out of the Regexp:
19
+ #
20
+ # when /^the (notice|error|info) flash$/
21
+ # ".flash.#{$1}"
22
+
23
+ # You can also return an array to use a different selector
24
+ # type, like:
25
+ #
26
+ # when /the header/
27
+ # [:xpath, "//header"]
28
+
29
+ # This allows you to provide a quoted selector as the scope
30
+ # for "within" steps as was previously the default for the
31
+ # web steps:
32
+ when /^"(.+)"$/
33
+ $1
34
+
35
+ else
36
+ raise "Can't find mapping from \"#{locator}\" to a selector.\n" +
37
+ "Now, go and add a mapping in #{__FILE__}"
38
+ end
39
+ end
40
+
41
+ end
42
+
43
+ World(HtmlSelectorsHelpers)
@@ -14,5 +14,3 @@ gem 'rspec-rails'
14
14
  gem 'spreewald', :path => '../../..'
15
15
 
16
16
  gem 'haml-rails'
17
- gem 'byebug'
18
-
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../../..
3
3
  specs:
4
- spreewald (1.8.0)
4
+ spreewald (1.9.0)
5
5
  cucumber
6
6
  cucumber_priority
7
7
 
@@ -38,7 +38,6 @@ GEM
38
38
  addressable (2.2.8)
39
39
  arel (3.0.2)
40
40
  builder (3.0.4)
41
- byebug (8.2.0)
42
41
  capybara (2.2.1)
43
42
  mime-types (>= 1.16)
44
43
  nokogiri (>= 1.3.3)
@@ -59,7 +58,8 @@ GEM
59
58
  cucumber (>= 1.2.0)
60
59
  nokogiri (>= 1.5.0)
61
60
  rails (>= 3.0.0)
62
- cucumber_priority (0.2.0)
61
+ cucumber_priority (0.1.2)
62
+ activesupport
63
63
  cucumber
64
64
  database_cleaner (1.0.1)
65
65
  diff-lcs (1.2.4)
@@ -160,7 +160,6 @@ PLATFORMS
160
160
  ruby
161
161
 
162
162
  DEPENDENCIES
163
- byebug
164
163
  capybara
165
164
  cucumber
166
165
  cucumber-rails
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env rake
2
+ require 'cucumber/rake/task'
3
+
4
+ desc 'Default: Run all specs for a specific rails version.'
5
+ task :default => :features
6
+
7
+ desc 'Run all specs for rails 3.2'
8
+ Cucumber::Rake::Task.new(:features) do |t|
9
+ feature = if ENV['SINGLE_FEATURE']
10
+ "../../shared/features/shared/#{ ENV['SINGLE_FEATURE'] }"
11
+ else
12
+ 'features/shared'
13
+ end
14
+
15
+ # tell cucumber where it finds it files (subdirectories and symlinks are confusing it)
16
+ t.cucumber_opts = "--require features --require features/shared #{feature}"
17
+ end
18
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spreewald
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0
4
+ version: 1.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Kraze
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-15 00:00:00.000000000 Z
11
+ date: 2017-05-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cucumber
@@ -167,7 +167,6 @@ files:
167
167
  - tests/rails-2.3/Gemfile
168
168
  - tests/rails-2.3/Gemfile.lock
169
169
  - tests/rails-2.3/Rakefile
170
- - tests/rails-2.3/app
171
170
  - tests/rails-2.3/config/boot.rb
172
171
  - tests/rails-2.3/config/cucumber.yml
173
172
  - tests/rails-2.3/config/database.yml
@@ -181,12 +180,9 @@ files:
181
180
  - tests/rails-2.3/config/initializers/session_store.rb
182
181
  - tests/rails-2.3/config/preinitializer.rb
183
182
  - tests/rails-2.3/config/routes.rb
184
- - tests/rails-2.3/db
185
- - tests/rails-2.3/features/shared
186
183
  - tests/rails-2.3/features/support/env.rb
187
184
  - tests/rails-2.3/features/support/paths.rb
188
185
  - tests/rails-2.3/features/support/selectors.rb
189
- - tests/rails-2.3/public
190
186
  - tests/rails-2.3/scripts/generate
191
187
  - tests/rails-3.2/.DS_Store
192
188
  - tests/rails-3.2/capybara-1/.firefox-version
@@ -194,7 +190,6 @@ files:
194
190
  - tests/rails-3.2/capybara-1/Gemfile
195
191
  - tests/rails-3.2/capybara-1/Gemfile.lock
196
192
  - tests/rails-3.2/capybara-1/Rakefile
197
- - tests/rails-3.2/capybara-1/app
198
193
  - tests/rails-3.2/capybara-1/config/application.rb
199
194
  - tests/rails-3.2/capybara-1/config/boot.rb
200
195
  - tests/rails-3.2/capybara-1/config/cucumber.yml
@@ -206,23 +201,15 @@ files:
206
201
  - tests/rails-3.2/capybara-1/config/initializers/secret_token.rb
207
202
  - tests/rails-3.2/capybara-1/config/initializers/session_store.rb
208
203
  - tests/rails-3.2/capybara-1/config/routes.rb
209
- - tests/rails-3.2/capybara-1/db
210
- - tests/rails-3.2/capybara-1/features/shared
211
204
  - tests/rails-3.2/capybara-1/features/support/env.rb
212
205
  - tests/rails-3.2/capybara-1/features/support/paths.rb
213
206
  - tests/rails-3.2/capybara-1/features/support/selectors.rb
214
- - tests/rails-3.2/capybara-1/public
215
207
  - tests/rails-3.2/capybara-2/.firefox-version
216
208
  - tests/rails-3.2/capybara-2/.ruby-version
217
209
  - tests/rails-3.2/capybara-2/Gemfile
218
210
  - tests/rails-3.2/capybara-2/Gemfile.lock
219
211
  - tests/rails-3.2/capybara-2/Rakefile
220
- - tests/rails-3.2/capybara-2/app
221
- - tests/rails-3.2/capybara-2/config
222
212
  - tests/rails-3.2/capybara-2/config.ru
223
- - tests/rails-3.2/capybara-2/db
224
- - tests/rails-3.2/capybara-2/features
225
- - tests/rails-3.2/capybara-2/public
226
213
  - tests/rails-3.2/capybara-2/script/cucumber
227
214
  - tests/rails-3.2/capybara-2/script/rails
228
215
  - tests/shared/app/controllers/application_controller.rb
@@ -279,7 +266,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
279
266
  version: '0'
280
267
  requirements: []
281
268
  rubyforge_project:
282
- rubygems_version: 2.5.1
269
+ rubygems_version: 2.4.8
283
270
  signing_key:
284
271
  specification_version: 4
285
272
  summary: Collection of useful cucumber steps.
@@ -289,7 +276,6 @@ test_files:
289
276
  - tests/rails-2.3/Gemfile
290
277
  - tests/rails-2.3/Gemfile.lock
291
278
  - tests/rails-2.3/Rakefile
292
- - tests/rails-2.3/app
293
279
  - tests/rails-2.3/config/boot.rb
294
280
  - tests/rails-2.3/config/cucumber.yml
295
281
  - tests/rails-2.3/config/database.yml
@@ -303,12 +289,9 @@ test_files:
303
289
  - tests/rails-2.3/config/initializers/session_store.rb
304
290
  - tests/rails-2.3/config/preinitializer.rb
305
291
  - tests/rails-2.3/config/routes.rb
306
- - tests/rails-2.3/db
307
- - tests/rails-2.3/features/shared
308
292
  - tests/rails-2.3/features/support/env.rb
309
293
  - tests/rails-2.3/features/support/paths.rb
310
294
  - tests/rails-2.3/features/support/selectors.rb
311
- - tests/rails-2.3/public
312
295
  - tests/rails-2.3/scripts/generate
313
296
  - tests/rails-3.2/.DS_Store
314
297
  - tests/rails-3.2/capybara-1/.firefox-version
@@ -316,7 +299,6 @@ test_files:
316
299
  - tests/rails-3.2/capybara-1/Gemfile
317
300
  - tests/rails-3.2/capybara-1/Gemfile.lock
318
301
  - tests/rails-3.2/capybara-1/Rakefile
319
- - tests/rails-3.2/capybara-1/app
320
302
  - tests/rails-3.2/capybara-1/config/application.rb
321
303
  - tests/rails-3.2/capybara-1/config/boot.rb
322
304
  - tests/rails-3.2/capybara-1/config/cucumber.yml
@@ -328,23 +310,15 @@ test_files:
328
310
  - tests/rails-3.2/capybara-1/config/initializers/secret_token.rb
329
311
  - tests/rails-3.2/capybara-1/config/initializers/session_store.rb
330
312
  - tests/rails-3.2/capybara-1/config/routes.rb
331
- - tests/rails-3.2/capybara-1/db
332
- - tests/rails-3.2/capybara-1/features/shared
333
313
  - tests/rails-3.2/capybara-1/features/support/env.rb
334
314
  - tests/rails-3.2/capybara-1/features/support/paths.rb
335
315
  - tests/rails-3.2/capybara-1/features/support/selectors.rb
336
- - tests/rails-3.2/capybara-1/public
337
316
  - tests/rails-3.2/capybara-2/.firefox-version
338
317
  - tests/rails-3.2/capybara-2/.ruby-version
339
318
  - tests/rails-3.2/capybara-2/Gemfile
340
319
  - tests/rails-3.2/capybara-2/Gemfile.lock
341
320
  - tests/rails-3.2/capybara-2/Rakefile
342
- - tests/rails-3.2/capybara-2/app
343
- - tests/rails-3.2/capybara-2/config
344
321
  - tests/rails-3.2/capybara-2/config.ru
345
- - tests/rails-3.2/capybara-2/db
346
- - tests/rails-3.2/capybara-2/features
347
- - tests/rails-3.2/capybara-2/public
348
322
  - tests/rails-3.2/capybara-2/script/cucumber
349
323
  - tests/rails-3.2/capybara-2/script/rails
350
324
  - tests/shared/app/controllers/application_controller.rb
data/tests/rails-2.3/app DELETED
@@ -1 +0,0 @@
1
- ../shared/app
@@ -1 +0,0 @@
1
- ../../shared/config/cucumber.yml
@@ -1 +0,0 @@
1
- ../../shared/config/database.yml
data/tests/rails-2.3/db DELETED
@@ -1 +0,0 @@
1
- ../shared/db
@@ -1 +0,0 @@
1
- ../../shared/features/shared
@@ -1 +0,0 @@
1
- ../../../shared/features/support/paths.rb
@@ -1 +0,0 @@
1
- ../../../shared/features/support/selectors.rb
@@ -1 +0,0 @@
1
- ../shared/public/
@@ -1 +0,0 @@
1
- ../../shared/app
@@ -1 +0,0 @@
1
- ../../../shared/config/cucumber.yml
@@ -1 +0,0 @@
1
- ../../../shared/config/database.yml
@@ -1 +0,0 @@
1
- ../../shared/db
@@ -1 +0,0 @@
1
- ../../../shared/features/shared
@@ -1 +0,0 @@
1
- ../../../../shared/features/support/paths.rb
@@ -1 +0,0 @@
1
- ../../../../shared/features/support/selectors.rb
@@ -1 +0,0 @@
1
- ../../shared/public/
@@ -1 +0,0 @@
1
- ../capybara-1/Rakefile
@@ -1 +0,0 @@
1
- ../capybara-1/app
@@ -1 +0,0 @@
1
- ../capybara-1/config
@@ -1 +0,0 @@
1
- ../capybara-1/db
@@ -1 +0,0 @@
1
- ../capybara-1/features
@@ -1 +0,0 @@
1
- ../../shared/public/