spreewald 1.11.2 → 1.11.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. data/lib/spreewald_support/version.rb +1 -1
  2. data/lib/spreewald_support/web_steps_helpers.rb +7 -2
  3. data/tests/rails-2.3/config/cucumber.yml +2 -0
  4. data/tests/rails-2.3/config/database.yml +3 -0
  5. data/tests/rails-2.3/features/support/paths.rb +16 -0
  6. data/tests/rails-2.3/features/support/selectors.rb +46 -0
  7. data/tests/rails-3.2/capybara-1/config/cucumber.yml +2 -0
  8. data/tests/rails-3.2/capybara-1/config/database.yml +3 -0
  9. data/tests/rails-3.2/capybara-1/features/support/paths.rb +16 -0
  10. data/tests/rails-3.2/capybara-1/features/support/selectors.rb +46 -0
  11. data/tests/rails-3.2/capybara-2/Rakefile +18 -0
  12. metadata +130 -131
  13. checksums.yaml +0 -7
  14. data/tests/rails-2.3/app +0 -1
  15. data/tests/rails-2.3/config/cucumber.yml +0 -1
  16. data/tests/rails-2.3/config/database.yml +0 -1
  17. data/tests/rails-2.3/db +0 -1
  18. data/tests/rails-2.3/features/shared +0 -1
  19. data/tests/rails-2.3/features/support/paths.rb +0 -1
  20. data/tests/rails-2.3/features/support/selectors.rb +0 -1
  21. data/tests/rails-2.3/public +0 -1
  22. data/tests/rails-3.2/capybara-1/app +0 -1
  23. data/tests/rails-3.2/capybara-1/config/cucumber.yml +0 -1
  24. data/tests/rails-3.2/capybara-1/config/database.yml +0 -1
  25. data/tests/rails-3.2/capybara-1/db +0 -1
  26. data/tests/rails-3.2/capybara-1/features/shared +0 -1
  27. data/tests/rails-3.2/capybara-1/features/support/paths.rb +0 -1
  28. data/tests/rails-3.2/capybara-1/features/support/selectors.rb +0 -1
  29. data/tests/rails-3.2/capybara-1/public +0 -1
  30. data/tests/rails-3.2/capybara-2/Rakefile +0 -1
  31. data/tests/rails-3.2/capybara-2/app +0 -1
  32. data/tests/rails-3.2/capybara-2/config +0 -1
  33. data/tests/rails-3.2/capybara-2/db +0 -1
  34. data/tests/rails-3.2/capybara-2/features +0 -1
  35. data/tests/rails-3.2/capybara-2/public +0 -1
@@ -1,3 +1,3 @@
1
1
  module Spreewald
2
- VERSION = '1.11.2'
2
+ VERSION = '1.11.3'
3
3
  end
@@ -87,14 +87,19 @@ module WebStepsHelpers
87
87
  begin
88
88
  old_ignore_hidden_elements = Capybara.ignore_hidden_elements
89
89
  Capybara.ignore_hidden_elements = false
90
+
90
91
  if options.has_key?(:selector)
91
- page.should have_css(options[:selector])
92
- have_hidden_tag = have_css(".hidden #{options[:selector]}, .invisible #{selector_or_text}, [style~=\"display: none\"] #{options[:selector]}")
92
+ selector = options[:selector].strip
93
+ page.should have_css options[:selector]
94
+
95
+ have_hidden_tag = have_css %(.hidden #{selector}, .invisible #{selector}, [style~="display: none"] #{selector})
96
+
93
97
  if options[:expectation] == :hidden
94
98
  page.should have_hidden_tag
95
99
  else
96
100
  page.should_not have_hidden_tag
97
101
  end
102
+
98
103
  else
99
104
  page.should have_css('*', :text => options[:text])
100
105
  have_hidden_text = have_css('.hidden, .invisible, [style~="display: none"]', :text => options[:text])
@@ -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,46 @@
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
+ when /^the table row containing "(.+?)"$/
18
+ all('tr').detect { |tr| tr.text.include? $1 } || raise("Could not find tr containing #{$1.inspect}")
19
+
20
+ # Add more mappings here.
21
+ # Here is an example that pulls values out of the Regexp:
22
+ #
23
+ # when /^the (notice|error|info) flash$/
24
+ # ".flash.#{$1}"
25
+
26
+ # You can also return an array to use a different selector
27
+ # type, like:
28
+ #
29
+ # when /the header/
30
+ # [:xpath, "//header"]
31
+
32
+ # This allows you to provide a quoted selector as the scope
33
+ # for "within" steps as was previously the default for the
34
+ # web steps:
35
+ when /^"(.+)"$/
36
+ $1
37
+
38
+ else
39
+ raise "Can't find mapping from \"#{locator}\" to a selector.\n" +
40
+ "Now, go and add a mapping in #{__FILE__}"
41
+ end
42
+ end
43
+
44
+ end
45
+
46
+ World(HtmlSelectorsHelpers)
@@ -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,46 @@
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
+ when /^the table row containing "(.+?)"$/
18
+ all('tr').detect { |tr| tr.text.include? $1 } || raise("Could not find tr containing #{$1.inspect}")
19
+
20
+ # Add more mappings here.
21
+ # Here is an example that pulls values out of the Regexp:
22
+ #
23
+ # when /^the (notice|error|info) flash$/
24
+ # ".flash.#{$1}"
25
+
26
+ # You can also return an array to use a different selector
27
+ # type, like:
28
+ #
29
+ # when /the header/
30
+ # [:xpath, "//header"]
31
+
32
+ # This allows you to provide a quoted selector as the scope
33
+ # for "within" steps as was previously the default for the
34
+ # web steps:
35
+ when /^"(.+)"$/
36
+ $1
37
+
38
+ else
39
+ raise "Can't find mapping from \"#{locator}\" to a selector.\n" +
40
+ "Now, go and add a mapping in #{__FILE__}"
41
+ end
42
+ end
43
+
44
+ end
45
+
46
+ World(HtmlSelectorsHelpers)
@@ -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,125 +1,140 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: spreewald
3
- version: !ruby/object:Gem::Version
4
- version: 1.11.2
3
+ version: !ruby/object:Gem::Version
4
+ hash: 61
5
+ prerelease:
6
+ segments:
7
+ - 1
8
+ - 11
9
+ - 3
10
+ version: 1.11.3
5
11
  platform: ruby
6
- authors:
12
+ authors:
7
13
  - Tobias Kraze
8
14
  autorequire:
9
15
  bindir: bin
10
16
  cert_chain: []
11
- date: 2018-03-12 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
17
+
18
+ date: 2018-03-14 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
14
21
  name: cucumber
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: '0'
20
- type: :runtime
21
22
  prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ">="
25
- - !ruby/object:Gem::Version
26
- version: '0'
27
- - !ruby/object:Gem::Dependency
28
- name: cucumber_priority
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
31
26
  - - ">="
32
- - !ruby/object:Gem::Version
33
- version: 0.3.0
27
+ - !ruby/object:Gem::Version
28
+ hash: 3
29
+ segments:
30
+ - 0
31
+ version: "0"
34
32
  type: :runtime
33
+ version_requirements: *id001
34
+ - !ruby/object:Gem::Dependency
35
+ name: cucumber_priority
35
36
  prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ none: false
39
+ requirements:
38
40
  - - ">="
39
- - !ruby/object:Gem::Version
41
+ - !ruby/object:Gem::Version
42
+ hash: 19
43
+ segments:
44
+ - 0
45
+ - 3
46
+ - 0
40
47
  version: 0.3.0
41
- - !ruby/object:Gem::Dependency
48
+ type: :runtime
49
+ version_requirements: *id002
50
+ - !ruby/object:Gem::Dependency
42
51
  name: bundler
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: '1.11'
48
- type: :development
49
52
  prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: '1.11'
55
- - !ruby/object:Gem::Dependency
56
- name: rake
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- version: '0'
53
+ requirement: &id003 !ruby/object:Gem::Requirement
54
+ none: false
55
+ requirements:
56
+ - - ~>
57
+ - !ruby/object:Gem::Version
58
+ hash: 25
59
+ segments:
60
+ - 1
61
+ - 11
62
+ version: "1.11"
62
63
  type: :development
64
+ version_requirements: *id003
65
+ - !ruby/object:Gem::Dependency
66
+ name: rake
63
67
  prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
68
+ requirement: &id004 !ruby/object:Gem::Requirement
69
+ none: false
70
+ requirements:
66
71
  - - ">="
67
- - !ruby/object:Gem::Version
68
- version: '0'
69
- - !ruby/object:Gem::Dependency
70
- name: pry
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - ">="
74
- - !ruby/object:Gem::Version
75
- version: '0'
72
+ - !ruby/object:Gem::Version
73
+ hash: 3
74
+ segments:
75
+ - 0
76
+ version: "0"
76
77
  type: :development
78
+ version_requirements: *id004
79
+ - !ruby/object:Gem::Dependency
80
+ name: pry
77
81
  prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
82
+ requirement: &id005 !ruby/object:Gem::Requirement
83
+ none: false
84
+ requirements:
80
85
  - - ">="
81
- - !ruby/object:Gem::Version
82
- version: '0'
83
- - !ruby/object:Gem::Dependency
84
- name: aruba
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - "~>"
88
- - !ruby/object:Gem::Version
89
- version: 0.10.2
86
+ - !ruby/object:Gem::Version
87
+ hash: 3
88
+ segments:
89
+ - 0
90
+ version: "0"
90
91
  type: :development
92
+ version_requirements: *id005
93
+ - !ruby/object:Gem::Dependency
94
+ name: aruba
91
95
  prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - "~>"
95
- - !ruby/object:Gem::Version
96
+ requirement: &id006 !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ~>
100
+ - !ruby/object:Gem::Version
101
+ hash: 51
102
+ segments:
103
+ - 0
104
+ - 10
105
+ - 2
96
106
  version: 0.10.2
97
- - !ruby/object:Gem::Dependency
98
- name: rspec
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - "~>"
102
- - !ruby/object:Gem::Version
103
- version: 3.4.0
104
107
  type: :development
108
+ version_requirements: *id006
109
+ - !ruby/object:Gem::Dependency
110
+ name: rspec
105
111
  prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - "~>"
109
- - !ruby/object:Gem::Version
112
+ requirement: &id007 !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ~>
116
+ - !ruby/object:Gem::Version
117
+ hash: 23
118
+ segments:
119
+ - 3
120
+ - 4
121
+ - 0
110
122
  version: 3.4.0
111
- description: A collection of cucumber steps we use in our projects, including steps
112
- to check HTML, tables, emails and some utility methods.
113
- email:
123
+ type: :development
124
+ version_requirements: *id007
125
+ description: A collection of cucumber steps we use in our projects, including steps to check HTML, tables, emails and some utility methods.
126
+ email:
114
127
  - tobias@kraze.eu
115
- executables:
128
+ executables:
116
129
  - spreewald
117
130
  extensions: []
131
+
118
132
  extra_rdoc_files: []
119
- files:
120
- - ".gitignore"
121
- - ".rspec"
122
- - ".ruby-version"
133
+
134
+ files:
135
+ - .gitignore
136
+ - .rspec
137
+ - .ruby-version
123
138
  - Gemfile
124
139
  - Gemfile.lock
125
140
  - LICENSE
@@ -160,7 +175,6 @@ files:
160
175
  - tests/rails-2.3/Gemfile
161
176
  - tests/rails-2.3/Gemfile.lock
162
177
  - tests/rails-2.3/Rakefile
163
- - tests/rails-2.3/app
164
178
  - tests/rails-2.3/config/boot.rb
165
179
  - tests/rails-2.3/config/cucumber.yml
166
180
  - tests/rails-2.3/config/database.yml
@@ -174,12 +188,9 @@ files:
174
188
  - tests/rails-2.3/config/initializers/session_store.rb
175
189
  - tests/rails-2.3/config/preinitializer.rb
176
190
  - tests/rails-2.3/config/routes.rb
177
- - tests/rails-2.3/db
178
- - tests/rails-2.3/features/shared
179
191
  - tests/rails-2.3/features/support/env.rb
180
192
  - tests/rails-2.3/features/support/paths.rb
181
193
  - tests/rails-2.3/features/support/selectors.rb
182
- - tests/rails-2.3/public
183
194
  - tests/rails-2.3/scripts/generate
184
195
  - tests/rails-3.2/.DS_Store
185
196
  - tests/rails-3.2/capybara-1/.firefox-version
@@ -187,7 +198,6 @@ files:
187
198
  - tests/rails-3.2/capybara-1/Gemfile
188
199
  - tests/rails-3.2/capybara-1/Gemfile.lock
189
200
  - tests/rails-3.2/capybara-1/Rakefile
190
- - tests/rails-3.2/capybara-1/app
191
201
  - tests/rails-3.2/capybara-1/config/application.rb
192
202
  - tests/rails-3.2/capybara-1/config/boot.rb
193
203
  - tests/rails-3.2/capybara-1/config/cucumber.yml
@@ -199,23 +209,15 @@ files:
199
209
  - tests/rails-3.2/capybara-1/config/initializers/secret_token.rb
200
210
  - tests/rails-3.2/capybara-1/config/initializers/session_store.rb
201
211
  - tests/rails-3.2/capybara-1/config/routes.rb
202
- - tests/rails-3.2/capybara-1/db
203
- - tests/rails-3.2/capybara-1/features/shared
204
212
  - tests/rails-3.2/capybara-1/features/support/env.rb
205
213
  - tests/rails-3.2/capybara-1/features/support/paths.rb
206
214
  - tests/rails-3.2/capybara-1/features/support/selectors.rb
207
- - tests/rails-3.2/capybara-1/public
208
215
  - tests/rails-3.2/capybara-2/.firefox-version
209
216
  - tests/rails-3.2/capybara-2/.ruby-version
210
217
  - tests/rails-3.2/capybara-2/Gemfile
211
218
  - tests/rails-3.2/capybara-2/Gemfile.lock
212
219
  - tests/rails-3.2/capybara-2/Rakefile
213
- - tests/rails-3.2/capybara-2/app
214
- - tests/rails-3.2/capybara-2/config
215
220
  - tests/rails-3.2/capybara-2/config.ru
216
- - tests/rails-3.2/capybara-2/db
217
- - tests/rails-3.2/capybara-2/features
218
- - tests/rails-3.2/capybara-2/public
219
221
  - tests/rails-3.2/capybara-2/script/cucumber
220
222
  - tests/rails-3.2/capybara-2/script/rails
221
223
  - tests/shared/app/controllers/application_controller.rb
@@ -253,36 +255,44 @@ files:
253
255
  - tests/shared/public/favicon.ico
254
256
  - tests/shared/public/javascripts/jquery-1.7.2.min.js
255
257
  homepage: https://github.com/makandra/spreewald
256
- licenses:
258
+ licenses:
257
259
  - MIT
258
- metadata: {}
259
260
  post_install_message:
260
261
  rdoc_options: []
261
- require_paths:
262
+
263
+ require_paths:
262
264
  - lib
263
- required_ruby_version: !ruby/object:Gem::Requirement
264
- requirements:
265
+ required_ruby_version: !ruby/object:Gem::Requirement
266
+ none: false
267
+ requirements:
265
268
  - - ">="
266
- - !ruby/object:Gem::Version
267
- version: '0'
268
- required_rubygems_version: !ruby/object:Gem::Requirement
269
- requirements:
269
+ - !ruby/object:Gem::Version
270
+ hash: 3
271
+ segments:
272
+ - 0
273
+ version: "0"
274
+ required_rubygems_version: !ruby/object:Gem::Requirement
275
+ none: false
276
+ requirements:
270
277
  - - ">="
271
- - !ruby/object:Gem::Version
272
- version: '0'
278
+ - !ruby/object:Gem::Version
279
+ hash: 3
280
+ segments:
281
+ - 0
282
+ version: "0"
273
283
  requirements: []
284
+
274
285
  rubyforge_project:
275
- rubygems_version: 2.7.6
286
+ rubygems_version: 1.8.30
276
287
  signing_key:
277
- specification_version: 4
288
+ specification_version: 3
278
289
  summary: Collection of useful cucumber steps.
279
- test_files:
290
+ test_files:
280
291
  - tests/rails-2.3/.firefox-version
281
292
  - tests/rails-2.3/.ruby-version
282
293
  - tests/rails-2.3/Gemfile
283
294
  - tests/rails-2.3/Gemfile.lock
284
295
  - tests/rails-2.3/Rakefile
285
- - tests/rails-2.3/app
286
296
  - tests/rails-2.3/config/boot.rb
287
297
  - tests/rails-2.3/config/cucumber.yml
288
298
  - tests/rails-2.3/config/database.yml
@@ -296,12 +306,9 @@ test_files:
296
306
  - tests/rails-2.3/config/initializers/session_store.rb
297
307
  - tests/rails-2.3/config/preinitializer.rb
298
308
  - tests/rails-2.3/config/routes.rb
299
- - tests/rails-2.3/db
300
- - tests/rails-2.3/features/shared
301
309
  - tests/rails-2.3/features/support/env.rb
302
310
  - tests/rails-2.3/features/support/paths.rb
303
311
  - tests/rails-2.3/features/support/selectors.rb
304
- - tests/rails-2.3/public
305
312
  - tests/rails-2.3/scripts/generate
306
313
  - tests/rails-3.2/.DS_Store
307
314
  - tests/rails-3.2/capybara-1/.firefox-version
@@ -309,7 +316,6 @@ test_files:
309
316
  - tests/rails-3.2/capybara-1/Gemfile
310
317
  - tests/rails-3.2/capybara-1/Gemfile.lock
311
318
  - tests/rails-3.2/capybara-1/Rakefile
312
- - tests/rails-3.2/capybara-1/app
313
319
  - tests/rails-3.2/capybara-1/config/application.rb
314
320
  - tests/rails-3.2/capybara-1/config/boot.rb
315
321
  - tests/rails-3.2/capybara-1/config/cucumber.yml
@@ -321,23 +327,15 @@ test_files:
321
327
  - tests/rails-3.2/capybara-1/config/initializers/secret_token.rb
322
328
  - tests/rails-3.2/capybara-1/config/initializers/session_store.rb
323
329
  - tests/rails-3.2/capybara-1/config/routes.rb
324
- - tests/rails-3.2/capybara-1/db
325
- - tests/rails-3.2/capybara-1/features/shared
326
330
  - tests/rails-3.2/capybara-1/features/support/env.rb
327
331
  - tests/rails-3.2/capybara-1/features/support/paths.rb
328
332
  - tests/rails-3.2/capybara-1/features/support/selectors.rb
329
- - tests/rails-3.2/capybara-1/public
330
333
  - tests/rails-3.2/capybara-2/.firefox-version
331
334
  - tests/rails-3.2/capybara-2/.ruby-version
332
335
  - tests/rails-3.2/capybara-2/Gemfile
333
336
  - tests/rails-3.2/capybara-2/Gemfile.lock
334
337
  - tests/rails-3.2/capybara-2/Rakefile
335
- - tests/rails-3.2/capybara-2/app
336
- - tests/rails-3.2/capybara-2/config
337
338
  - tests/rails-3.2/capybara-2/config.ru
338
- - tests/rails-3.2/capybara-2/db
339
- - tests/rails-3.2/capybara-2/features
340
- - tests/rails-3.2/capybara-2/public
341
339
  - tests/rails-3.2/capybara-2/script/cucumber
342
340
  - tests/rails-3.2/capybara-2/script/rails
343
341
  - tests/shared/app/controllers/application_controller.rb
@@ -374,3 +372,4 @@ test_files:
374
372
  - tests/shared/features/support/selectors.rb
375
373
  - tests/shared/public/favicon.ico
376
374
  - tests/shared/public/javascripts/jquery-1.7.2.min.js
375
+ has_rdoc:
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA256:
3
- metadata.gz: 832e19b87b9d9d63a8074bb73bf98bc49953a7dfc8b7d656c5193f88760bd643
4
- data.tar.gz: 547826cf456d15f228b9fe15e9f7a31dbd3345e31b7bbf0586b9d8a47571cb3a
5
- SHA512:
6
- metadata.gz: 9b7e7a8c2113bc2f813c0415872791248dcea1fe234256c4a0c1424e7fd90c9468300945bf1e222f5d0ccd9f6fa3693cfbd3249d33e9032d5c535cd33fa62d77
7
- data.tar.gz: 17e7049f1552e788fd1784f396e43cd188258bd17ff62c49139da4ce794d8b2824b0e7b5743a1f80b42e085b6c0836e4fb5d238fa9f28f35cad758cf58f4fdc7
@@ -1 +0,0 @@
1
- tests/rails-2.3/../shared/app
@@ -1 +0,0 @@
1
- tests/rails-2.3/config/../../shared/config/cucumber.yml
@@ -1 +0,0 @@
1
- tests/rails-2.3/config/../../shared/config/database.yml
@@ -1 +0,0 @@
1
- tests/rails-2.3/../shared/db
@@ -1 +0,0 @@
1
- tests/rails-2.3/features/../../shared/features/shared
@@ -1 +0,0 @@
1
- tests/rails-2.3/features/support/../../../shared/features/support/paths.rb
@@ -1 +0,0 @@
1
- tests/rails-2.3/features/support/../../../shared/features/support/selectors.rb
@@ -1 +0,0 @@
1
- tests/rails-2.3/../shared/public/
@@ -1 +0,0 @@
1
- tests/rails-3.2/capybara-1/../../shared/app
@@ -1 +0,0 @@
1
- tests/rails-3.2/capybara-1/config/../../../shared/config/cucumber.yml
@@ -1 +0,0 @@
1
- tests/rails-3.2/capybara-1/config/../../../shared/config/database.yml
@@ -1 +0,0 @@
1
- tests/rails-3.2/capybara-1/../../shared/db
@@ -1 +0,0 @@
1
- tests/rails-3.2/capybara-1/features/../../../shared/features/shared
@@ -1 +0,0 @@
1
- tests/rails-3.2/capybara-1/features/support/../../../../shared/features/support/paths.rb
@@ -1 +0,0 @@
1
- tests/rails-3.2/capybara-1/features/support/../../../../shared/features/support/selectors.rb
@@ -1 +0,0 @@
1
- tests/rails-3.2/capybara-1/../../shared/public/
@@ -1 +0,0 @@
1
- tests/rails-3.2/capybara-2/../capybara-1/Rakefile
@@ -1 +0,0 @@
1
- tests/rails-3.2/capybara-2/../capybara-1/app
@@ -1 +0,0 @@
1
- tests/rails-3.2/capybara-2/../capybara-1/config
@@ -1 +0,0 @@
1
- tests/rails-3.2/capybara-2/../capybara-1/db
@@ -1 +0,0 @@
1
- tests/rails-3.2/capybara-2/../capybara-1/features
@@ -1 +0,0 @@
1
- tests/rails-3.2/capybara-2/../../shared/public/