spreewald 1.5.4 → 1.5.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/spreewald/web_steps.rb +7 -2
- data/lib/spreewald_support/version.rb +1 -1
- data/tests/rails-2.3/Gemfile.lock +1 -1
- data/tests/rails-2.3/config/cucumber.yml +2 -0
- data/tests/rails-2.3/config/database.yml +3 -0
- data/tests/rails-2.3/features/support/paths.rb +16 -0
- data/tests/rails-2.3/features/support/selectors.rb +43 -0
- data/tests/rails-3.2/capybara-1/Gemfile.lock +1 -1
- data/tests/rails-3.2/capybara-1/config/cucumber.yml +2 -0
- data/tests/rails-3.2/capybara-1/config/database.yml +3 -0
- data/tests/rails-3.2/capybara-1/features/support/paths.rb +16 -0
- data/tests/rails-3.2/capybara-1/features/support/selectors.rb +43 -0
- data/tests/rails-3.2/capybara-2/Rakefile +18 -0
- data/tests/shared/app/controllers/authenticated_controller.rb +17 -0
- data/tests/shared/features/shared/web_steps.feature +11 -0
- metadata +68 -74
- checksums.yaml +0 -7
- data/tests/rails-2.3/app +0 -1
- data/tests/rails-2.3/config/cucumber.yml +0 -1
- data/tests/rails-2.3/config/database.yml +0 -1
- data/tests/rails-2.3/db +0 -1
- data/tests/rails-2.3/features/shared +0 -1
- data/tests/rails-2.3/features/support/paths.rb +0 -1
- data/tests/rails-2.3/features/support/selectors.rb +0 -1
- data/tests/rails-2.3/public +0 -1
- data/tests/rails-3.2/capybara-1/app +0 -1
- data/tests/rails-3.2/capybara-1/config/cucumber.yml +0 -1
- data/tests/rails-3.2/capybara-1/config/database.yml +0 -1
- data/tests/rails-3.2/capybara-1/db +0 -1
- data/tests/rails-3.2/capybara-1/features/shared +0 -1
- data/tests/rails-3.2/capybara-1/features/support/paths.rb +0 -1
- data/tests/rails-3.2/capybara-1/features/support/selectors.rb +0 -1
- data/tests/rails-3.2/capybara-1/public +0 -1
- data/tests/rails-3.2/capybara-2/Rakefile +0 -1
- data/tests/rails-3.2/capybara-2/app +0 -1
- data/tests/rails-3.2/capybara-2/config +0 -1
- data/tests/rails-3.2/capybara-2/db +0 -1
- data/tests/rails-3.2/capybara-2/features +0 -1
- data/tests/rails-3.2/capybara-2/public +0 -1
data/lib/spreewald/web_steps.rb
CHANGED
@@ -493,7 +493,11 @@ end.overridable
|
|
493
493
|
#
|
494
494
|
# Example:
|
495
495
|
#
|
496
|
-
# Then "Sponsor" should link to "http://makandra.com"
|
496
|
+
# Then "Sponsor" should link to "http://makandra.com/"
|
497
|
+
#
|
498
|
+
# Don't forget the trailing slash. Otherwise you'll get the error
|
499
|
+
# expected: /http:\/\/makandra.com(\?[^\/]*)?$/
|
500
|
+
# got: "http://makandra.com/" (using =~)
|
497
501
|
#
|
498
502
|
Then /^"([^"]*)" should link to "([^"]*)"$/ do |link_label, target|
|
499
503
|
patiently do
|
@@ -671,7 +675,8 @@ end.overridable
|
|
671
675
|
When /^I perform basic authentication as "([^\"]*)\/([^\"]*)" and go to (.*)$/ do |user, password, page_name|
|
672
676
|
path = _path_to(page_name)
|
673
677
|
if Capybara::current_driver == :selenium
|
674
|
-
|
678
|
+
server = Capybara.current_session.server rescue Capybara.current_session.driver.rack_server
|
679
|
+
visit("http://#{user}:#{password}@#{server.host}:#{server.port}#{path}")
|
675
680
|
else
|
676
681
|
authorizers = [
|
677
682
|
(page.driver.browser if page.driver.respond_to?(:browser)),
|
@@ -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)
|
@@ -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)
|
@@ -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
|
+
|
@@ -0,0 +1,17 @@
|
|
1
|
+
class AuthenticatedController < ApplicationController
|
2
|
+
|
3
|
+
before_filter :authenticate
|
4
|
+
|
5
|
+
def page
|
6
|
+
render :text => 'Action reached'
|
7
|
+
end
|
8
|
+
|
9
|
+
private
|
10
|
+
|
11
|
+
def authenticate
|
12
|
+
authenticate_or_request_with_http_basic('Administration') do |username, password|
|
13
|
+
username == 'user' && password == 'password'
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
@@ -130,3 +130,14 @@ Feature: Web steps
|
|
130
130
|
Then I should see an element ".child1" within ".container1"
|
131
131
|
But I should not see an element ".child1" within ".container2"
|
132
132
|
|
133
|
+
Scenario: /^I perform basic authentication as "([^\"]*)\/([^\"]*)" and go to (.*)$/
|
134
|
+
When I go to "/authenticated/page"
|
135
|
+
Then I should see "Access denied"
|
136
|
+
When I perform basic authentication as "user/password" and go to "/authenticated/page"
|
137
|
+
Then I should see "Action reached"
|
138
|
+
|
139
|
+
@javascript
|
140
|
+
Scenario: /^I perform basic authentication as "([^\"]*)\/([^\"]*)" and go to (.*)$/ with Javascript
|
141
|
+
When I perform basic authentication as "user/password" and go to "/authenticated/page"
|
142
|
+
Then I should see "Action reached"
|
143
|
+
|
metadata
CHANGED
@@ -1,53 +1,61 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: spreewald
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 9
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 5
|
9
|
+
- 5
|
10
|
+
version: 1.5.5
|
5
11
|
platform: ruby
|
6
|
-
authors:
|
12
|
+
authors:
|
7
13
|
- Tobias Kraze
|
8
14
|
autorequire:
|
9
15
|
bindir: bin
|
10
16
|
cert_chain: []
|
11
|
-
|
12
|
-
|
13
|
-
|
17
|
+
|
18
|
+
date: 2016-09-20 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
|
-
|
23
|
-
|
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
|
-
|
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
|
-
|
37
|
-
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
38
|
+
none: false
|
39
|
+
requirements:
|
38
40
|
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
hash: 3
|
43
|
+
segments:
|
44
|
+
- 0
|
45
|
+
version: "0"
|
46
|
+
type: :runtime
|
47
|
+
version_requirements: *id002
|
48
|
+
description: A collection of cucumber steps we use in our projects, including steps to check HTML, tables, emails and some utility methods.
|
49
|
+
email:
|
44
50
|
- tobias@kraze.eu
|
45
|
-
executables:
|
51
|
+
executables:
|
46
52
|
- spreewald
|
47
53
|
extensions: []
|
54
|
+
|
48
55
|
extra_rdoc_files: []
|
49
|
-
|
50
|
-
|
56
|
+
|
57
|
+
files:
|
58
|
+
- .gitignore
|
51
59
|
- LICENSE
|
52
60
|
- README.md
|
53
61
|
- Rakefile
|
@@ -77,7 +85,6 @@ files:
|
|
77
85
|
- tests/rails-2.3/Gemfile
|
78
86
|
- tests/rails-2.3/Gemfile.lock
|
79
87
|
- tests/rails-2.3/Rakefile
|
80
|
-
- tests/rails-2.3/app
|
81
88
|
- tests/rails-2.3/config/boot.rb
|
82
89
|
- tests/rails-2.3/config/cucumber.yml
|
83
90
|
- tests/rails-2.3/config/database.yml
|
@@ -91,12 +98,9 @@ files:
|
|
91
98
|
- tests/rails-2.3/config/initializers/session_store.rb
|
92
99
|
- tests/rails-2.3/config/preinitializer.rb
|
93
100
|
- tests/rails-2.3/config/routes.rb
|
94
|
-
- tests/rails-2.3/db
|
95
|
-
- tests/rails-2.3/features/shared
|
96
101
|
- tests/rails-2.3/features/support/env.rb
|
97
102
|
- tests/rails-2.3/features/support/paths.rb
|
98
103
|
- tests/rails-2.3/features/support/selectors.rb
|
99
|
-
- tests/rails-2.3/public
|
100
104
|
- tests/rails-2.3/scripts/generate
|
101
105
|
- tests/rails-3.2/.DS_Store
|
102
106
|
- tests/rails-3.2/capybara-1/.firefox-version
|
@@ -104,7 +108,6 @@ files:
|
|
104
108
|
- tests/rails-3.2/capybara-1/Gemfile
|
105
109
|
- tests/rails-3.2/capybara-1/Gemfile.lock
|
106
110
|
- tests/rails-3.2/capybara-1/Rakefile
|
107
|
-
- tests/rails-3.2/capybara-1/app
|
108
111
|
- tests/rails-3.2/capybara-1/config/application.rb
|
109
112
|
- tests/rails-3.2/capybara-1/config/boot.rb
|
110
113
|
- tests/rails-3.2/capybara-1/config/cucumber.yml
|
@@ -116,26 +119,19 @@ files:
|
|
116
119
|
- tests/rails-3.2/capybara-1/config/initializers/secret_token.rb
|
117
120
|
- tests/rails-3.2/capybara-1/config/initializers/session_store.rb
|
118
121
|
- tests/rails-3.2/capybara-1/config/routes.rb
|
119
|
-
- tests/rails-3.2/capybara-1/db
|
120
|
-
- tests/rails-3.2/capybara-1/features/shared
|
121
122
|
- tests/rails-3.2/capybara-1/features/support/env.rb
|
122
123
|
- tests/rails-3.2/capybara-1/features/support/paths.rb
|
123
124
|
- tests/rails-3.2/capybara-1/features/support/selectors.rb
|
124
|
-
- tests/rails-3.2/capybara-1/public
|
125
125
|
- tests/rails-3.2/capybara-2/.firefox-version
|
126
126
|
- tests/rails-3.2/capybara-2/.ruby-version
|
127
127
|
- tests/rails-3.2/capybara-2/Gemfile
|
128
128
|
- tests/rails-3.2/capybara-2/Gemfile.lock
|
129
129
|
- tests/rails-3.2/capybara-2/Rakefile
|
130
|
-
- tests/rails-3.2/capybara-2/app
|
131
|
-
- tests/rails-3.2/capybara-2/config
|
132
130
|
- tests/rails-3.2/capybara-2/config.ru
|
133
|
-
- tests/rails-3.2/capybara-2/db
|
134
|
-
- tests/rails-3.2/capybara-2/features
|
135
|
-
- tests/rails-3.2/capybara-2/public
|
136
131
|
- tests/rails-3.2/capybara-2/script/cucumber
|
137
132
|
- tests/rails-3.2/capybara-2/script/rails
|
138
133
|
- tests/shared/app/controllers/application_controller.rb
|
134
|
+
- tests/shared/app/controllers/authenticated_controller.rb
|
139
135
|
- tests/shared/app/controllers/emails_controller.rb
|
140
136
|
- tests/shared/app/controllers/forms_controller.rb
|
141
137
|
- tests/shared/app/controllers/static_pages_controller.rb
|
@@ -169,36 +165,44 @@ files:
|
|
169
165
|
- tests/shared/public/favicon.ico
|
170
166
|
- tests/shared/public/javascripts/jquery-1.7.2.min.js
|
171
167
|
homepage: https://github.com/makandra/spreewald
|
172
|
-
licenses:
|
168
|
+
licenses:
|
173
169
|
- MIT
|
174
|
-
metadata: {}
|
175
170
|
post_install_message:
|
176
171
|
rdoc_options: []
|
177
|
-
|
172
|
+
|
173
|
+
require_paths:
|
178
174
|
- lib
|
179
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
180
|
-
|
175
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
176
|
+
none: false
|
177
|
+
requirements:
|
181
178
|
- - ">="
|
182
|
-
- !ruby/object:Gem::Version
|
183
|
-
|
184
|
-
|
185
|
-
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
hash: 3
|
181
|
+
segments:
|
182
|
+
- 0
|
183
|
+
version: "0"
|
184
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
185
|
+
none: false
|
186
|
+
requirements:
|
186
187
|
- - ">="
|
187
|
-
- !ruby/object:Gem::Version
|
188
|
-
|
188
|
+
- !ruby/object:Gem::Version
|
189
|
+
hash: 3
|
190
|
+
segments:
|
191
|
+
- 0
|
192
|
+
version: "0"
|
189
193
|
requirements: []
|
194
|
+
|
190
195
|
rubyforge_project:
|
191
|
-
rubygems_version:
|
196
|
+
rubygems_version: 1.8.29
|
192
197
|
signing_key:
|
193
|
-
specification_version:
|
198
|
+
specification_version: 3
|
194
199
|
summary: Collection of useful cucumber steps.
|
195
|
-
test_files:
|
200
|
+
test_files:
|
196
201
|
- tests/rails-2.3/.firefox-version
|
197
202
|
- tests/rails-2.3/.ruby-version
|
198
203
|
- tests/rails-2.3/Gemfile
|
199
204
|
- tests/rails-2.3/Gemfile.lock
|
200
205
|
- tests/rails-2.3/Rakefile
|
201
|
-
- tests/rails-2.3/app
|
202
206
|
- tests/rails-2.3/config/boot.rb
|
203
207
|
- tests/rails-2.3/config/cucumber.yml
|
204
208
|
- tests/rails-2.3/config/database.yml
|
@@ -212,12 +216,9 @@ test_files:
|
|
212
216
|
- tests/rails-2.3/config/initializers/session_store.rb
|
213
217
|
- tests/rails-2.3/config/preinitializer.rb
|
214
218
|
- tests/rails-2.3/config/routes.rb
|
215
|
-
- tests/rails-2.3/db
|
216
|
-
- tests/rails-2.3/features/shared
|
217
219
|
- tests/rails-2.3/features/support/env.rb
|
218
220
|
- tests/rails-2.3/features/support/paths.rb
|
219
221
|
- tests/rails-2.3/features/support/selectors.rb
|
220
|
-
- tests/rails-2.3/public
|
221
222
|
- tests/rails-2.3/scripts/generate
|
222
223
|
- tests/rails-3.2/.DS_Store
|
223
224
|
- tests/rails-3.2/capybara-1/.firefox-version
|
@@ -225,7 +226,6 @@ test_files:
|
|
225
226
|
- tests/rails-3.2/capybara-1/Gemfile
|
226
227
|
- tests/rails-3.2/capybara-1/Gemfile.lock
|
227
228
|
- tests/rails-3.2/capybara-1/Rakefile
|
228
|
-
- tests/rails-3.2/capybara-1/app
|
229
229
|
- tests/rails-3.2/capybara-1/config/application.rb
|
230
230
|
- tests/rails-3.2/capybara-1/config/boot.rb
|
231
231
|
- tests/rails-3.2/capybara-1/config/cucumber.yml
|
@@ -237,26 +237,19 @@ test_files:
|
|
237
237
|
- tests/rails-3.2/capybara-1/config/initializers/secret_token.rb
|
238
238
|
- tests/rails-3.2/capybara-1/config/initializers/session_store.rb
|
239
239
|
- tests/rails-3.2/capybara-1/config/routes.rb
|
240
|
-
- tests/rails-3.2/capybara-1/db
|
241
|
-
- tests/rails-3.2/capybara-1/features/shared
|
242
240
|
- tests/rails-3.2/capybara-1/features/support/env.rb
|
243
241
|
- tests/rails-3.2/capybara-1/features/support/paths.rb
|
244
242
|
- tests/rails-3.2/capybara-1/features/support/selectors.rb
|
245
|
-
- tests/rails-3.2/capybara-1/public
|
246
243
|
- tests/rails-3.2/capybara-2/.firefox-version
|
247
244
|
- tests/rails-3.2/capybara-2/.ruby-version
|
248
245
|
- tests/rails-3.2/capybara-2/Gemfile
|
249
246
|
- tests/rails-3.2/capybara-2/Gemfile.lock
|
250
247
|
- tests/rails-3.2/capybara-2/Rakefile
|
251
|
-
- tests/rails-3.2/capybara-2/app
|
252
|
-
- tests/rails-3.2/capybara-2/config
|
253
248
|
- tests/rails-3.2/capybara-2/config.ru
|
254
|
-
- tests/rails-3.2/capybara-2/db
|
255
|
-
- tests/rails-3.2/capybara-2/features
|
256
|
-
- tests/rails-3.2/capybara-2/public
|
257
249
|
- tests/rails-3.2/capybara-2/script/cucumber
|
258
250
|
- tests/rails-3.2/capybara-2/script/rails
|
259
251
|
- tests/shared/app/controllers/application_controller.rb
|
252
|
+
- tests/shared/app/controllers/authenticated_controller.rb
|
260
253
|
- tests/shared/app/controllers/emails_controller.rb
|
261
254
|
- tests/shared/app/controllers/forms_controller.rb
|
262
255
|
- tests/shared/app/controllers/static_pages_controller.rb
|
@@ -289,3 +282,4 @@ test_files:
|
|
289
282
|
- tests/shared/features/support/selectors.rb
|
290
283
|
- tests/shared/public/favicon.ico
|
291
284
|
- tests/shared/public/javascripts/jquery-1.7.2.min.js
|
285
|
+
has_rdoc:
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: 95115f920a75b5a59a8d31fadaf913c16069ea07
|
4
|
-
data.tar.gz: 6ac65ce696f536863988542cb40f2253e5b38c9e
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: c55513e40628665071bbbc8720d04fd50729b9ee3cb0e305e2fd399d22d94664c625e92bfb1fcd6b7eb535710c3101ae7e72a90f661bb26e4f34533e035b18f9
|
7
|
-
data.tar.gz: ca9cf62b6f65ce0a6f150426934e494debb667023daabb5abed789fce7452beff5cfe8311af976c41e2f678a9ffddb3745fa44197249170b419d2109c5754ea6
|
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
|
data/tests/rails-2.3/public
DELETED
@@ -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/
|