spreewald 2.2.3 → 2.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +9 -0
- data/lib/spreewald/email_steps.rb +5 -1
- data/lib/spreewald/web_steps.rb +3 -3
- data/lib/spreewald_support/version.rb +1 -1
- data/tests/rails-3_capybara-1/Gemfile.lock +1 -1
- data/tests/rails-3_capybara-1/app +1 -0
- data/tests/rails-3_capybara-1/config/cucumber.yml +1 -0
- data/tests/rails-3_capybara-1/config/database.yml +1 -0
- data/tests/rails-3_capybara-1/db +1 -0
- data/tests/rails-3_capybara-1/features/shared +1 -0
- data/tests/rails-3_capybara-1/features/support/paths.rb +1 -0
- data/tests/rails-3_capybara-1/features/support/selectors.rb +1 -0
- data/tests/rails-3_capybara-1/public +1 -0
- data/tests/rails-3_capybara-2/Gemfile.lock +1 -1
- data/tests/rails-3_capybara-2/Rakefile +1 -0
- data/tests/rails-3_capybara-2/app +1 -0
- data/tests/rails-3_capybara-2/config +1 -0
- data/tests/rails-3_capybara-2/config.ru +1 -0
- data/tests/rails-3_capybara-2/db +1 -0
- data/tests/rails-3_capybara-2/features +1 -0
- data/tests/rails-3_capybara-2/public +1 -0
- data/tests/rails-3_capybara-2/script +1 -0
- data/tests/rails-4_capybara-3/Gemfile.lock +1 -1
- data/tests/rails-4_capybara-3/app +1 -0
- data/tests/rails-4_capybara-3/db +1 -0
- data/tests/rails-4_capybara-3/features/development_steps.feature +1 -0
- data/tests/rails-4_capybara-3/features/email_steps.feature +1 -0
- data/tests/rails-4_capybara-3/features/overriding.feature +1 -0
- data/tests/rails-4_capybara-3/features/step_definitions/overriding_steps.rb +1 -0
- data/tests/rails-4_capybara-3/features/step_definitions/test_steps.rb +1 -0
- data/tests/rails-4_capybara-3/features/support/paths.rb +1 -0
- data/tests/rails-4_capybara-3/features/support/selectors.rb +1 -0
- data/tests/rails-4_capybara-3/features/table_steps.feature +1 -0
- data/tests/rails-4_capybara-3/features/web_steps.feature +1 -0
- data/tests/rails-4_capybara-3/public/fixture_files +1 -0
- data/tests/shared/app/models/mailer.rb +2 -2
- data/tests/shared/app/views/forms/invalid_form.html.haml +5 -5
- data/tests/shared/app/views/static_pages/visibility.html.haml +16 -0
- data/tests/shared/features/shared/web_steps.feature +40 -10
- data/tests/shared/public/fixture_files/attachment.pdf +0 -0
- metadata +31 -3
- data/tests/rails-3_capybara-1/config/cucumber.yml +0 -2
- data/tests/rails-3_capybara-1/config/database.yml +0 -7
- data/tests/rails-3_capybara-1/features/support/paths.rb +0 -16
- data/tests/rails-3_capybara-1/features/support/selectors.rb +0 -52
- data/tests/rails-3_capybara-2/Rakefile +0 -18
- data/tests/rails-3_capybara-2/config.ru +0 -4
- data/tests/rails-4_capybara-3/features/development_steps.feature +0 -8
- data/tests/rails-4_capybara-3/features/email_steps.feature +0 -216
- data/tests/rails-4_capybara-3/features/overriding.feature +0 -5
- data/tests/rails-4_capybara-3/features/step_definitions/overriding_steps.rb +0 -3
- data/tests/rails-4_capybara-3/features/step_definitions/test_steps.rb +0 -56
- data/tests/rails-4_capybara-3/features/support/paths.rb +0 -16
- data/tests/rails-4_capybara-3/features/support/selectors.rb +0 -52
- data/tests/rails-4_capybara-3/features/table_steps.feature +0 -293
- data/tests/rails-4_capybara-3/features/web_steps.feature +0 -300
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 722a4a8f8f3355dddbbd3abd5df49ba0316c1b57
|
4
|
+
data.tar.gz: 694c570012da6abd82412c1160342a6c09ebf80d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d88a0c8e05b5542bdb58eb49954e96d2c15df249110bd548619292015b2c1fc815fc24366c474f0e91c13405c62e6f1b1e992478eaf5ff5cbd2acead55e8f0fc
|
7
|
+
data.tar.gz: 30942d57ee1f144a0afad41c1eafc5b132128109a2e0cf25afa3738b17c5233a1222f1feefbc383a41fa5af041c11e9d6ed9c2c1f399c1a2a3ec0ef596c3f53e
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
|
|
3
3
|
|
4
4
|
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
5
5
|
|
6
|
+
## 2.2.4
|
7
|
+
- Fix "..." field should have the error "..." test by removing old should syntax
|
8
|
+
- Add single-line mail step to READNE
|
9
|
+
|
6
10
|
## 2.2.3
|
7
11
|
- Fix 'the window should be titled' step - closes: [#102](https://github.com/makandra/spreewald/issues/102)
|
8
12
|
- Support old capybara_screenshot versions which require launchy gem
|
data/README.md
CHANGED
@@ -176,6 +176,15 @@ the step definitions.
|
|
176
176
|
a prefix.
|
177
177
|
|
178
178
|
|
179
|
+
* **Then (an|no) e?mail should have been sent(( |and|with|from "..."|bcc "..."|cc "..."|to "..."|the subject "..."|the body "..."|the attachments "...")+)**
|
180
|
+
|
181
|
+
Example:
|
182
|
+
|
183
|
+
Then an email should have been sent from "max.mustermann@example.com" to "john.doe@example.com" with bcc "john.wane@example.com" and with cc "foo@bar.com" and the subject "The subject" and the body "The body" and the attachments "attachment.pdf"
|
184
|
+
|
185
|
+
You may skip parts, of course.
|
186
|
+
|
187
|
+
|
179
188
|
* **When I follow the (first|second|third)? link in the e?mail**
|
180
189
|
|
181
190
|
|
@@ -44,7 +44,11 @@ Then /^(an|no) e?mail should have been sent with:$/ do |mode, raw_data|
|
|
44
44
|
end
|
45
45
|
end.overridable
|
46
46
|
|
47
|
-
#
|
47
|
+
# Example:
|
48
|
+
#
|
49
|
+
# Then an email should have been sent from "max.mustermann@example.com" to "john.doe@example.com" with bcc "john.wane@example.com" and with cc "foo@bar.com" and the subject "The subject" and the body "The body" and the attachments "attachment.pdf"
|
50
|
+
#
|
51
|
+
# You may skip parts, of course.
|
48
52
|
Then /^(an|no) e?mail should have been sent((?: |and|with|from "[^"]+"|bcc "[^"]+"|cc "[^"]+"|to "[^"]+"|the subject "[^"]+"|the body "[^"]+"|the attachments "[^"]+")+)$/ do |mode, query|
|
49
53
|
patiently do
|
50
54
|
conditions = {}
|
data/lib/spreewald/web_steps.rb
CHANGED
@@ -373,16 +373,16 @@ Then /^the "([^"]*)" field should have the error "([^"]*)"$/ do |field, error_me
|
|
373
373
|
classes = element.find(:xpath, '..')[:class].split(' ')
|
374
374
|
|
375
375
|
form_for_input = element.find(:xpath, 'ancestor::form[1]')
|
376
|
-
using_formtastic = form_for_input
|
376
|
+
using_formtastic = form_for_input && form_for_input.has_css?('.formtastic')
|
377
377
|
error_class = using_formtastic ? 'error' : 'field_with_errors'
|
378
378
|
|
379
379
|
expect(classes).to include(error_class)
|
380
380
|
|
381
381
|
if using_formtastic
|
382
382
|
error_paragraph = element.find(:xpath, '../*[@class="inline-errors"][1]')
|
383
|
-
error_paragraph.
|
383
|
+
expect(error_paragraph).to have_content(error_message)
|
384
384
|
else
|
385
|
-
page.
|
385
|
+
expect(page).to have_content("#{field.titlecase} #{error_message}")
|
386
386
|
end
|
387
387
|
end
|
388
388
|
end.overridable
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-3_capybara-1/../shared/app
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-3_capybara-1/config/../../shared/config/cucumber.yml
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-3_capybara-1/config/../../shared/config/database.yml
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-3_capybara-1/../shared/db
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-3_capybara-1/features/../../shared/features/shared
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-3_capybara-1/features/support/../../../shared/features/support/paths.rb
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-3_capybara-1/features/support/../../../shared/features/support/selectors.rb
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-3_capybara-1/../shared/public
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-3_capybara-2/../rails-3_capybara-1/Rakefile
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-3_capybara-2/../rails-3_capybara-1/app
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-3_capybara-2/../rails-3_capybara-1/config
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-3_capybara-2/../rails-3_capybara-1/config.ru
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-3_capybara-2/../rails-3_capybara-1/db
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-3_capybara-2/../rails-3_capybara-1/features/
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-3_capybara-2/../rails-3_capybara-1/public
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-3_capybara-2/../rails-3_capybara-1/script/
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-4_capybara-3/../shared/app/
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-4_capybara-3/../shared/db/
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-4_capybara-3/features/../../shared/features/shared/development_steps.feature
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-4_capybara-3/features/../../shared/features/shared/email_steps.feature
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-4_capybara-3/features/../../shared/features/shared/overriding.feature
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-4_capybara-3/features/step_definitions/../../../shared/features/shared/step_definitions/
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-4_capybara-3/features/step_definitions/../../../shared/features/shared/step_definitions/
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-4_capybara-3/features/support/../../../shared/features/support/paths.rb
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-4_capybara-3/features/support/../../../shared/features/support/selectors.rb
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-4_capybara-3/features/../../shared/features/shared/table_steps.feature
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-4_capybara-3/features/../../shared/features/shared/web_steps.feature
|
@@ -0,0 +1 @@
|
|
1
|
+
tests/rails-4_capybara-3/public/../../shared/public/fixture_files/
|
@@ -10,7 +10,7 @@ class Mailer < ActionMailer::Base
|
|
10
10
|
if Rails.version >= "3"
|
11
11
|
|
12
12
|
def email
|
13
|
-
attachments['attached_file.pdf'] = File.open("
|
13
|
+
attachments['attached_file.pdf'] = File.open("#{Rails.root}/public/fixture_files/attachment.pdf", "w") {}
|
14
14
|
mail(
|
15
15
|
:from => FROM,
|
16
16
|
:reply_to => REPLY_TO,
|
@@ -24,7 +24,7 @@ class Mailer < ActionMailer::Base
|
|
24
24
|
else
|
25
25
|
|
26
26
|
def email
|
27
|
-
attachments['attached_file.pdf'] = File.open("
|
27
|
+
attachments['attached_file.pdf'] = File.open("#{Rails.root}/public/fixture_files/attachment.pdf", "w") {}
|
28
28
|
recipients TO
|
29
29
|
reply_to REPLY_TO
|
30
30
|
from FROM
|
@@ -1,10 +1,10 @@
|
|
1
1
|
= form_tag do
|
2
2
|
.form-group.field_with_errors
|
3
|
-
= label_tag 'text_control', '
|
3
|
+
= label_tag 'text_control', 'A is invalid'
|
4
4
|
= text_field_tag 'text_control', 'Text control value'
|
5
5
|
.form-group.field_with_errors
|
6
|
-
= label_tag '
|
7
|
-
= text_area_tag '
|
6
|
+
= label_tag 'textarea_control_1', 'B is invalid'
|
7
|
+
= text_area_tag 'textarea_control_1', "Textarea control line 1\nTextarea control line 2\n"
|
8
8
|
.form-group
|
9
|
-
= label_tag '
|
10
|
-
= text_area_tag '
|
9
|
+
= label_tag 'textarea_control_2', 'C'
|
10
|
+
= text_area_tag 'textarea_control_2', "Textarea control line 1\nTextarea control line 2\n"
|
@@ -17,3 +17,19 @@
|
|
17
17
|
%div{:style => 'display: block'}
|
18
18
|
%label(for='visible-field') Visible field
|
19
19
|
%input(type='text' id='visible-field')
|
20
|
+
|
21
|
+
%div(style='display: none')
|
22
|
+
div with style: display: none
|
23
|
+
.hidden
|
24
|
+
div with class: hidden
|
25
|
+
.invisible
|
26
|
+
div with class: invisible
|
27
|
+
|
28
|
+
|
29
|
+
.container
|
30
|
+
%div(style='display: none')
|
31
|
+
div with style: display: none
|
32
|
+
.hidden
|
33
|
+
div with class: hidden
|
34
|
+
.invisible
|
35
|
+
div with class: invisible
|
@@ -33,15 +33,19 @@ Feature: Web steps
|
|
33
33
|
|
34
34
|
Scenario: /^the "([^\"]*)" field should( not)? have an error$/
|
35
35
|
When I go to "/forms/invalid_form"
|
36
|
-
Then the "
|
37
|
-
Then the "
|
38
|
-
Then the "
|
39
|
-
|
36
|
+
Then the "A" field should have an error
|
37
|
+
Then the "B" field should have an error
|
38
|
+
Then the "C" field should not have an error
|
39
|
+
|
40
|
+
Scenario: /^the "([^"]*)" field should have the error "([^"]*)"$/
|
41
|
+
When I go to "/forms/invalid_form"
|
42
|
+
Then the "A" field should have the error "is invalid"
|
43
|
+
Then the "B" field should have the error "is invalid"
|
40
44
|
|
41
45
|
|
42
46
|
Scenario: /^the "([^"]*)" field should have no error$/
|
43
47
|
When I go to "/forms/invalid_form"
|
44
|
-
Then the "
|
48
|
+
Then the "C" field should have no error
|
45
49
|
|
46
50
|
|
47
51
|
Scenario: /^I should see a form with the following values:$/
|
@@ -143,11 +147,11 @@ Feature: Web steps
|
|
143
147
|
@javascript
|
144
148
|
Scenario: /^Then (the tag )?"..." should( not)? be visible$/ with javascript
|
145
149
|
When I go to "/static_pages/visibility"
|
146
|
-
Then "hidden ümläüt" should be
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
150
|
+
Then "hidden ümläüt" should not be visible
|
151
|
+
And "visible ümläüt" should be visible
|
152
|
+
And a hidden string with quotes should not be visible
|
153
|
+
And a visible string with quotes should be visible
|
154
|
+
And "hidden ümläüt" should not be visible
|
151
155
|
|
152
156
|
|
153
157
|
Scenario: /^the "([^\"]*)" field should( not)? be visible$/
|
@@ -163,6 +167,32 @@ Feature: Web steps
|
|
163
167
|
But the "Hidden field" field should not be visible
|
164
168
|
|
165
169
|
|
170
|
+
Scenario: /^(the tag )?"([^\"]+)" should be hidden$/ with javascript
|
171
|
+
When I go to "/static_pages/visibility"
|
172
|
+
Then "div with class: hidden" should be hidden
|
173
|
+
And "div with style: display: none" should be hidden
|
174
|
+
And "div with class: invisible" should be hidden
|
175
|
+
|
176
|
+
|
177
|
+
@javascript
|
178
|
+
Scenario: /^(the tag )?"([^\"]+)" should be hidden$/
|
179
|
+
When I go to "/static_pages/visibility"
|
180
|
+
And "div with style: display: none" should be hidden
|
181
|
+
|
182
|
+
|
183
|
+
Scenario: /^(the tag )?"([^\"]+)" should be hidden$/ within container with javascript
|
184
|
+
When I go to "/static_pages/visibility"
|
185
|
+
Then "div with class: hidden" should be hidden within ".container"
|
186
|
+
And "div with style: display: none" should be hidden within ".container"
|
187
|
+
And "div with class: invisible" should be hidden within ".container"
|
188
|
+
|
189
|
+
|
190
|
+
@javascript
|
191
|
+
Scenario: /^(the tag )?"([^\"]+)" should be hidden$/ within container
|
192
|
+
When I go to "/static_pages/visibility"
|
193
|
+
And "div with style: display: none" should be hidden within ".container"
|
194
|
+
|
195
|
+
|
166
196
|
Scenario: /^I should (not )?see (?:an|the) element "([^"]+)"$/
|
167
197
|
When I go to "/static_pages/see_element"
|
168
198
|
Then I should see an element ".panel"
|
File without changes
|
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: 2.2.
|
4
|
+
version: 2.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tobias Kraze
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-07-
|
11
|
+
date: 2019-07-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cucumber
|
@@ -183,6 +183,7 @@ files:
|
|
183
183
|
- tests/rails-3_capybara-1/Gemfile
|
184
184
|
- tests/rails-3_capybara-1/Gemfile.lock
|
185
185
|
- tests/rails-3_capybara-1/Rakefile
|
186
|
+
- tests/rails-3_capybara-1/app
|
186
187
|
- tests/rails-3_capybara-1/config.ru
|
187
188
|
- tests/rails-3_capybara-1/config/application.rb
|
188
189
|
- tests/rails-3_capybara-1/config/boot.rb
|
@@ -195,22 +196,32 @@ files:
|
|
195
196
|
- tests/rails-3_capybara-1/config/initializers/secret_token.rb
|
196
197
|
- tests/rails-3_capybara-1/config/initializers/session_store.rb
|
197
198
|
- tests/rails-3_capybara-1/config/routes.rb
|
199
|
+
- tests/rails-3_capybara-1/db
|
200
|
+
- tests/rails-3_capybara-1/features/shared
|
198
201
|
- tests/rails-3_capybara-1/features/support/env.rb
|
199
202
|
- tests/rails-3_capybara-1/features/support/paths.rb
|
200
203
|
- tests/rails-3_capybara-1/features/support/selectors.rb
|
201
204
|
- tests/rails-3_capybara-1/features/support/selenium.rb
|
205
|
+
- tests/rails-3_capybara-1/public
|
202
206
|
- tests/rails-3_capybara-1/script/cucumber
|
203
207
|
- tests/rails-3_capybara-1/script/rails
|
204
208
|
- tests/rails-3_capybara-2/.ruby-version
|
205
209
|
- tests/rails-3_capybara-2/Gemfile
|
206
210
|
- tests/rails-3_capybara-2/Gemfile.lock
|
207
211
|
- tests/rails-3_capybara-2/Rakefile
|
212
|
+
- tests/rails-3_capybara-2/app
|
213
|
+
- tests/rails-3_capybara-2/config
|
208
214
|
- tests/rails-3_capybara-2/config.ru
|
215
|
+
- tests/rails-3_capybara-2/db
|
216
|
+
- tests/rails-3_capybara-2/features
|
217
|
+
- tests/rails-3_capybara-2/public
|
218
|
+
- tests/rails-3_capybara-2/script
|
209
219
|
- tests/rails-4_capybara-3/.gitignore
|
210
220
|
- tests/rails-4_capybara-3/Gemfile
|
211
221
|
- tests/rails-4_capybara-3/Gemfile.lock
|
212
222
|
- tests/rails-4_capybara-3/README.rdoc
|
213
223
|
- tests/rails-4_capybara-3/Rakefile
|
224
|
+
- tests/rails-4_capybara-3/app
|
214
225
|
- tests/rails-4_capybara-3/bin/bundle
|
215
226
|
- tests/rails-4_capybara-3/bin/rails
|
216
227
|
- tests/rails-4_capybara-3/bin/rake
|
@@ -235,6 +246,7 @@ files:
|
|
235
246
|
- tests/rails-4_capybara-3/config/locales/en.yml
|
236
247
|
- tests/rails-4_capybara-3/config/routes.rb
|
237
248
|
- tests/rails-4_capybara-3/config/secrets.yml
|
249
|
+
- tests/rails-4_capybara-3/db
|
238
250
|
- tests/rails-4_capybara-3/features/development_steps.feature
|
239
251
|
- tests/rails-4_capybara-3/features/email_steps.feature
|
240
252
|
- tests/rails-4_capybara-3/features/overriding.feature
|
@@ -252,6 +264,7 @@ files:
|
|
252
264
|
- tests/rails-4_capybara-3/public/422.html
|
253
265
|
- tests/rails-4_capybara-3/public/500.html
|
254
266
|
- tests/rails-4_capybara-3/public/favicon.ico
|
267
|
+
- tests/rails-4_capybara-3/public/fixture_files
|
255
268
|
- tests/rails-4_capybara-3/script/cucumber
|
256
269
|
- tests/shared/app/controllers/application_controller.rb
|
257
270
|
- tests/shared/app/controllers/authenticated_controller.rb
|
@@ -295,6 +308,7 @@ files:
|
|
295
308
|
- tests/shared/features/support/paths.rb
|
296
309
|
- tests/shared/features/support/selectors.rb
|
297
310
|
- tests/shared/public/favicon.ico
|
311
|
+
- tests/shared/public/fixture_files/attachment.pdf
|
298
312
|
- tests/shared/public/fixture_files/spreadsheet.ods
|
299
313
|
- tests/shared/public/javascripts/.keep
|
300
314
|
homepage: https://github.com/makandra/spreewald
|
@@ -317,7 +331,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
317
331
|
version: '0'
|
318
332
|
requirements: []
|
319
333
|
rubyforge_project:
|
320
|
-
rubygems_version: 2.
|
334
|
+
rubygems_version: 2.6.14.3
|
321
335
|
signing_key:
|
322
336
|
specification_version: 4
|
323
337
|
summary: Collection of useful cucumber steps.
|
@@ -326,6 +340,7 @@ test_files:
|
|
326
340
|
- tests/rails-3_capybara-1/Gemfile
|
327
341
|
- tests/rails-3_capybara-1/Gemfile.lock
|
328
342
|
- tests/rails-3_capybara-1/Rakefile
|
343
|
+
- tests/rails-3_capybara-1/app
|
329
344
|
- tests/rails-3_capybara-1/config.ru
|
330
345
|
- tests/rails-3_capybara-1/config/application.rb
|
331
346
|
- tests/rails-3_capybara-1/config/boot.rb
|
@@ -338,22 +353,32 @@ test_files:
|
|
338
353
|
- tests/rails-3_capybara-1/config/initializers/secret_token.rb
|
339
354
|
- tests/rails-3_capybara-1/config/initializers/session_store.rb
|
340
355
|
- tests/rails-3_capybara-1/config/routes.rb
|
356
|
+
- tests/rails-3_capybara-1/db
|
357
|
+
- tests/rails-3_capybara-1/features/shared
|
341
358
|
- tests/rails-3_capybara-1/features/support/env.rb
|
342
359
|
- tests/rails-3_capybara-1/features/support/paths.rb
|
343
360
|
- tests/rails-3_capybara-1/features/support/selectors.rb
|
344
361
|
- tests/rails-3_capybara-1/features/support/selenium.rb
|
362
|
+
- tests/rails-3_capybara-1/public
|
345
363
|
- tests/rails-3_capybara-1/script/cucumber
|
346
364
|
- tests/rails-3_capybara-1/script/rails
|
347
365
|
- tests/rails-3_capybara-2/.ruby-version
|
348
366
|
- tests/rails-3_capybara-2/Gemfile
|
349
367
|
- tests/rails-3_capybara-2/Gemfile.lock
|
350
368
|
- tests/rails-3_capybara-2/Rakefile
|
369
|
+
- tests/rails-3_capybara-2/app
|
370
|
+
- tests/rails-3_capybara-2/config
|
351
371
|
- tests/rails-3_capybara-2/config.ru
|
372
|
+
- tests/rails-3_capybara-2/db
|
373
|
+
- tests/rails-3_capybara-2/features
|
374
|
+
- tests/rails-3_capybara-2/public
|
375
|
+
- tests/rails-3_capybara-2/script
|
352
376
|
- tests/rails-4_capybara-3/.gitignore
|
353
377
|
- tests/rails-4_capybara-3/Gemfile
|
354
378
|
- tests/rails-4_capybara-3/Gemfile.lock
|
355
379
|
- tests/rails-4_capybara-3/README.rdoc
|
356
380
|
- tests/rails-4_capybara-3/Rakefile
|
381
|
+
- tests/rails-4_capybara-3/app
|
357
382
|
- tests/rails-4_capybara-3/bin/bundle
|
358
383
|
- tests/rails-4_capybara-3/bin/rails
|
359
384
|
- tests/rails-4_capybara-3/bin/rake
|
@@ -378,6 +403,7 @@ test_files:
|
|
378
403
|
- tests/rails-4_capybara-3/config/locales/en.yml
|
379
404
|
- tests/rails-4_capybara-3/config/routes.rb
|
380
405
|
- tests/rails-4_capybara-3/config/secrets.yml
|
406
|
+
- tests/rails-4_capybara-3/db
|
381
407
|
- tests/rails-4_capybara-3/features/development_steps.feature
|
382
408
|
- tests/rails-4_capybara-3/features/email_steps.feature
|
383
409
|
- tests/rails-4_capybara-3/features/overriding.feature
|
@@ -395,6 +421,7 @@ test_files:
|
|
395
421
|
- tests/rails-4_capybara-3/public/422.html
|
396
422
|
- tests/rails-4_capybara-3/public/500.html
|
397
423
|
- tests/rails-4_capybara-3/public/favicon.ico
|
424
|
+
- tests/rails-4_capybara-3/public/fixture_files
|
398
425
|
- tests/rails-4_capybara-3/script/cucumber
|
399
426
|
- tests/shared/app/controllers/application_controller.rb
|
400
427
|
- tests/shared/app/controllers/authenticated_controller.rb
|
@@ -438,5 +465,6 @@ test_files:
|
|
438
465
|
- tests/shared/features/support/paths.rb
|
439
466
|
- tests/shared/features/support/selectors.rb
|
440
467
|
- tests/shared/public/favicon.ico
|
468
|
+
- tests/shared/public/fixture_files/attachment.pdf
|
441
469
|
- tests/shared/public/fixture_files/spreadsheet.ods
|
442
470
|
- tests/shared/public/javascripts/.keep
|