spreewald 4.6.2 → 4.6.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.
Files changed (83) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/test.yml +3 -1
  3. data/CHANGELOG.md +6 -0
  4. data/Gemfile.ruby266.lock +8 -8
  5. data/Gemfile.ruby320.lock +10 -10
  6. data/README.md +27 -1
  7. data/lib/spreewald/web_steps.rb +16 -0
  8. data/lib/spreewald_support/mail_finder.rb +10 -2
  9. data/lib/spreewald_support/version.rb +1 -1
  10. data/media/logo.dark.shapes.svg +137 -0
  11. data/media/logo.dark.text.svg +107 -0
  12. data/media/logo.light.shapes.svg +136 -0
  13. data/media/logo.light.text.svg +106 -0
  14. data/media/makandra-with-bottom-margin.dark.svg +180 -0
  15. data/media/makandra-with-bottom-margin.light.svg +180 -0
  16. data/spec/steps/show_me_the_mails_spec.rb +22 -0
  17. data/tests/rails-7_capybara-3/Gemfile.lock +2 -2
  18. data/tests/rails-8_capybara-3/.ruby-version +1 -0
  19. data/tests/rails-8_capybara-3/Gemfile +27 -0
  20. data/tests/rails-8_capybara-3/Gemfile.lock +326 -0
  21. data/tests/rails-8_capybara-3/README.md +24 -0
  22. data/tests/rails-8_capybara-3/Rakefile +6 -0
  23. data/tests/rails-8_capybara-3/app/controllers +1 -0
  24. data/tests/rails-8_capybara-3/app/mailers/application_mailer.rb +4 -0
  25. data/tests/rails-8_capybara-3/app/mailers/spreewald_mailer.rb +66 -0
  26. data/tests/rails-8_capybara-3/app/models/application_record.rb +3 -0
  27. data/tests/rails-8_capybara-3/app/views +1 -0
  28. data/tests/rails-8_capybara-3/bin/bundle +114 -0
  29. data/tests/rails-8_capybara-3/bin/rails +4 -0
  30. data/tests/rails-8_capybara-3/bin/rake +4 -0
  31. data/tests/rails-8_capybara-3/bin/setup +33 -0
  32. data/tests/rails-8_capybara-3/config/application.rb +35 -0
  33. data/tests/rails-8_capybara-3/config/boot.rb +3 -0
  34. data/tests/rails-8_capybara-3/config/cucumber.yml +9 -0
  35. data/tests/rails-8_capybara-3/config/database.yml +25 -0
  36. data/tests/rails-8_capybara-3/config/environment.rb +5 -0
  37. data/tests/rails-8_capybara-3/config/environments/development.rb +66 -0
  38. data/tests/rails-8_capybara-3/config/environments/test.rb +56 -0
  39. data/tests/rails-8_capybara-3/config/initializers/application_controller_renderer.rb +8 -0
  40. data/tests/rails-8_capybara-3/config/initializers/backtrace_silencers.rb +8 -0
  41. data/tests/rails-8_capybara-3/config/initializers/content_security_policy.rb +28 -0
  42. data/tests/rails-8_capybara-3/config/initializers/cookies_serializer.rb +5 -0
  43. data/tests/rails-8_capybara-3/config/initializers/filter_parameter_logging.rb +6 -0
  44. data/tests/rails-8_capybara-3/config/initializers/inflections.rb +16 -0
  45. data/tests/rails-8_capybara-3/config/initializers/mime_types.rb +4 -0
  46. data/tests/rails-8_capybara-3/config/initializers/new_framework_defaults_6_1.rb +67 -0
  47. data/tests/rails-8_capybara-3/config/initializers/permissions_policy.rb +11 -0
  48. data/tests/rails-8_capybara-3/config/initializers/wrap_parameters.rb +14 -0
  49. data/tests/rails-8_capybara-3/config/locales/en.yml +33 -0
  50. data/tests/rails-8_capybara-3/config/routes.rb +1 -0
  51. data/tests/rails-8_capybara-3/config.ru +6 -0
  52. data/tests/rails-8_capybara-3/db +1 -0
  53. data/tests/rails-8_capybara-3/features/browser_tab_steps.feature +1 -0
  54. data/tests/rails-8_capybara-3/features/development_steps.feature +1 -0
  55. data/tests/rails-8_capybara-3/features/email_steps.feature +1 -0
  56. data/tests/rails-8_capybara-3/features/iframe_steps.feature +1 -0
  57. data/tests/rails-8_capybara-3/features/overriding.feature +1 -0
  58. data/tests/rails-8_capybara-3/features/session_steps.feature +1 -0
  59. data/tests/rails-8_capybara-3/features/step_definitions/.gitkeep +0 -0
  60. data/tests/rails-8_capybara-3/features/step_definitions/field_error_steps.rb +12 -0
  61. data/tests/rails-8_capybara-3/features/step_definitions/overriding_steps.rb +1 -0
  62. data/tests/rails-8_capybara-3/features/step_definitions/test_steps.rb +1 -0
  63. data/tests/rails-8_capybara-3/features/support/env.rb +66 -0
  64. data/tests/rails-8_capybara-3/features/support/paths.rb +1 -0
  65. data/tests/rails-8_capybara-3/features/support/selectors.rb +1 -0
  66. data/tests/rails-8_capybara-3/features/support/selenium.rb +1 -0
  67. data/tests/rails-8_capybara-3/features/table_steps.feature +1 -0
  68. data/tests/rails-8_capybara-3/features/time_steps.feature +1 -0
  69. data/tests/rails-8_capybara-3/features/web_steps.feature +1 -0
  70. data/tests/rails-8_capybara-3/lib/tasks/.keep +0 -0
  71. data/tests/rails-8_capybara-3/lib/tasks/cucumber.rake +76 -0
  72. data/tests/rails-8_capybara-3/log/.keep +0 -0
  73. data/tests/rails-8_capybara-3/public/404.html +67 -0
  74. data/tests/rails-8_capybara-3/public/422.html +67 -0
  75. data/tests/rails-8_capybara-3/public/500.html +66 -0
  76. data/tests/rails-8_capybara-3/public/favicon.ico +0 -0
  77. data/tests/rails-8_capybara-3/public/fixture_files +1 -0
  78. data/tests/rails-8_capybara-3/script/cucumber +11 -0
  79. data/tests/shared/app/controllers/emails_controller.rb +1 -8
  80. data/tests/shared/app/models/mailer.rb +43 -96
  81. data/tests/shared/features/shared/email_steps.feature +18 -0
  82. data/tests/shared/features/support/selenium.rb +2 -2
  83. metadata +134 -6
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1 @@
1
+ ../../shared/public/fixture_files/
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ vendored_cucumber_bin = Dir["#{File.dirname(__FILE__)}/../vendor/{gems,plugins}/cucumber*/bin/cucumber"].first
5
+ if vendored_cucumber_bin
6
+ load File.expand_path(vendored_cucumber_bin)
7
+ else
8
+ require 'rubygems' unless ENV['NO_RUBYGEMS']
9
+ require 'cucumber'
10
+ load Cucumber::BINARY
11
+ end
@@ -67,14 +67,7 @@ class EmailsController < ApplicationController
67
67
  private
68
68
 
69
69
  def deliver(method_name)
70
- case
71
- when Rails.version.to_i >= 5
72
- SpreewaldMailer.send(method_name).deliver
73
- when Rails.version.to_i >= 3
74
- Mailer.public_send(method_name).deliver
75
- else
76
- Mailer.public_send("deliver_#{method_name}")
77
- end
70
+ SpreewaldMailer.send(method_name).deliver
78
71
  end
79
72
 
80
73
  end
@@ -7,113 +7,60 @@ class Mailer < ActionMailer::Base
7
7
  FROM = "from@example.com"
8
8
  SUBJECT = "SUBJECT"
9
9
 
10
- if Rails.version >= "3"
11
-
12
- def email
13
- attachments['attached_file.pdf'] = File.open("#{Rails.root}/public/fixture_files/attachment.pdf", "w") {}
14
- mail(
15
- :from => FROM,
16
- :reply_to => REPLY_TO,
17
- :to => TO,
18
- :cc => CC,
19
- :bcc => BCC,
20
- :subject => SUBJECT
21
- )
22
- end
23
-
24
- def email_crlf
25
- email
26
- end
27
-
28
- def email_with_umlauts
29
- email
30
- end
31
-
32
- def html_email_with_links
33
- email
34
- end
35
-
36
- def text_email_with_links
37
- email
38
- end
39
-
40
- def html_email_with_linebreaks
41
- email
42
- end
43
-
44
- def html_email_with_specific_line
45
- email
46
- end
47
-
48
- def text_email_with_specific_line
49
- email
50
- end
51
-
52
- def html_email_for_successful_test_without_header
53
- email
54
- end
55
-
56
- def text_email_for_successful_test_without_header
57
- email
58
- end
59
-
60
- def html_email_for_failed_test_without_header
61
- email
62
- end
63
-
64
- def text_email_for_failed_test_without_header
65
- email
66
- end
67
-
68
- else
10
+ def email
11
+ attachments['attached_file.pdf'] = File.open("#{Rails.root}/public/fixture_files/attachment.pdf") {}
12
+ mail(
13
+ :from => FROM,
14
+ :reply_to => REPLY_TO,
15
+ :to => TO,
16
+ :cc => CC,
17
+ :bcc => BCC,
18
+ :subject => SUBJECT
19
+ )
20
+ end
69
21
 
70
- def email
71
- attachments['attached_file.pdf'] = File.open("#{Rails.root}/public/fixture_files/attachment.pdf", "w") {}
72
- recipients TO
73
- reply_to REPLY_TO
74
- from FROM
75
- cc CC
76
- bcc BCC
77
- subject SUBJECT
78
- body BODY
79
- end
22
+ def email_crlf
23
+ email
24
+ end
80
25
 
81
- def email_crlf
82
- email
83
- end
26
+ def email_with_umlauts
27
+ email
28
+ end
84
29
 
85
- def html_email_with_links
86
- email
87
- end
30
+ def html_email_with_links
31
+ email
32
+ end
88
33
 
89
- def text_email_with_links
90
- email
91
- end
34
+ def text_email_with_links
35
+ email
36
+ end
92
37
 
93
- def html_email_with_specific_line
94
- email
95
- end
38
+ def html_email_with_linebreaks
39
+ email
40
+ end
96
41
 
97
- def text_email_with_specific_line
98
- email
99
- end
42
+ def html_email_with_specific_line
43
+ email
44
+ end
100
45
 
101
- def html_email_for_successful_test_without_header
102
- email
103
- end
46
+ def text_email_with_specific_line
47
+ email
48
+ end
104
49
 
105
- def text_email_for_successful_test_without_header
106
- email
107
- end
50
+ def html_email_for_successful_test_without_header
51
+ email
52
+ end
108
53
 
109
- def html_email_for_failed_test_without_header
110
- email
111
- end
54
+ def text_email_for_successful_test_without_header
55
+ email
56
+ end
112
57
 
113
- def text_email_for_failed_test_without_header
114
- email
115
- end
58
+ def html_email_for_failed_test_without_header
59
+ email
60
+ end
116
61
 
62
+ def text_email_for_failed_test_without_header
63
+ email
117
64
  end
118
65
 
119
66
  end
@@ -297,6 +297,24 @@ Feature: Test Spreewald's email steps
297
297
  '''
298
298
  """
299
299
 
300
+ Then the following multiline step should succeed:
301
+ """
302
+ Then an email should have been sent with:
303
+ '''
304
+ From: from@example.com
305
+ Attachments: attached_file.pdf
306
+ '''
307
+ """
308
+
309
+ Then the following multiline step should fail:
310
+ """
311
+ Then an email should have been sent with:
312
+ '''
313
+ From: from@example.com
314
+ Attachments: not_attached_file.pdf
315
+ '''
316
+ """
317
+
300
318
  When I clear my emails
301
319
  And I go to "/emails/send_crlf_email"
302
320
 
@@ -2,9 +2,9 @@ Capybara.register_driver :selenium do |app|
2
2
  options = Selenium::WebDriver::Chrome::Options.new
3
3
  options.add_argument('--headless') unless ENV.key?('NO_HEADLESS')
4
4
  options.add_argument('--disable-infobars')
5
- options.add_option('w3c', false)
5
+ # options.add_option('w3c', false)
6
6
  options.add_emulation(device_metrics: { width: 1280, height: 960, touch: false })
7
7
  Capybara::Selenium::Driver.new(app, browser: :chrome, options: options)
8
8
  end
9
9
 
10
- Selenium::WebDriver.logger.level = :error
10
+ Selenium::WebDriver.logger.level = :error
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: 4.6.2
4
+ version: 4.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Kraze
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-07 00:00:00.000000000 Z
11
+ date: 2025-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cucumber
@@ -137,6 +137,12 @@ files:
137
137
  - lib/spreewald_support/without_waiting.rb
138
138
  - lib/steps/follow_the_link.rb
139
139
  - lib/steps/show_me_the_mails.rb
140
+ - media/logo.dark.shapes.svg
141
+ - media/logo.dark.text.svg
142
+ - media/logo.light.shapes.svg
143
+ - media/logo.light.text.svg
144
+ - media/makandra-with-bottom-margin.dark.svg
145
+ - media/makandra-with-bottom-margin.light.svg
140
146
  - spec/spec_helper.rb
141
147
  - spec/spreewald_support/comparision_spec.rb
142
148
  - spec/spreewald_support/mail_to_plaintext_converter_spec.rb
@@ -212,6 +218,67 @@ files:
212
218
  - tests/rails-7_capybara-3/public/favicon.ico
213
219
  - tests/rails-7_capybara-3/public/fixture_files
214
220
  - tests/rails-7_capybara-3/script/cucumber
221
+ - tests/rails-8_capybara-3/.ruby-version
222
+ - tests/rails-8_capybara-3/Gemfile
223
+ - tests/rails-8_capybara-3/Gemfile.lock
224
+ - tests/rails-8_capybara-3/README.md
225
+ - tests/rails-8_capybara-3/Rakefile
226
+ - tests/rails-8_capybara-3/app/controllers
227
+ - tests/rails-8_capybara-3/app/mailers/application_mailer.rb
228
+ - tests/rails-8_capybara-3/app/mailers/spreewald_mailer.rb
229
+ - tests/rails-8_capybara-3/app/models/application_record.rb
230
+ - tests/rails-8_capybara-3/app/views
231
+ - tests/rails-8_capybara-3/bin/bundle
232
+ - tests/rails-8_capybara-3/bin/rails
233
+ - tests/rails-8_capybara-3/bin/rake
234
+ - tests/rails-8_capybara-3/bin/setup
235
+ - tests/rails-8_capybara-3/config.ru
236
+ - tests/rails-8_capybara-3/config/application.rb
237
+ - tests/rails-8_capybara-3/config/boot.rb
238
+ - tests/rails-8_capybara-3/config/cucumber.yml
239
+ - tests/rails-8_capybara-3/config/database.yml
240
+ - tests/rails-8_capybara-3/config/environment.rb
241
+ - tests/rails-8_capybara-3/config/environments/development.rb
242
+ - tests/rails-8_capybara-3/config/environments/test.rb
243
+ - tests/rails-8_capybara-3/config/initializers/application_controller_renderer.rb
244
+ - tests/rails-8_capybara-3/config/initializers/backtrace_silencers.rb
245
+ - tests/rails-8_capybara-3/config/initializers/content_security_policy.rb
246
+ - tests/rails-8_capybara-3/config/initializers/cookies_serializer.rb
247
+ - tests/rails-8_capybara-3/config/initializers/filter_parameter_logging.rb
248
+ - tests/rails-8_capybara-3/config/initializers/inflections.rb
249
+ - tests/rails-8_capybara-3/config/initializers/mime_types.rb
250
+ - tests/rails-8_capybara-3/config/initializers/new_framework_defaults_6_1.rb
251
+ - tests/rails-8_capybara-3/config/initializers/permissions_policy.rb
252
+ - tests/rails-8_capybara-3/config/initializers/wrap_parameters.rb
253
+ - tests/rails-8_capybara-3/config/locales/en.yml
254
+ - tests/rails-8_capybara-3/config/routes.rb
255
+ - tests/rails-8_capybara-3/db
256
+ - tests/rails-8_capybara-3/features/browser_tab_steps.feature
257
+ - tests/rails-8_capybara-3/features/development_steps.feature
258
+ - tests/rails-8_capybara-3/features/email_steps.feature
259
+ - tests/rails-8_capybara-3/features/iframe_steps.feature
260
+ - tests/rails-8_capybara-3/features/overriding.feature
261
+ - tests/rails-8_capybara-3/features/session_steps.feature
262
+ - tests/rails-8_capybara-3/features/step_definitions/.gitkeep
263
+ - tests/rails-8_capybara-3/features/step_definitions/field_error_steps.rb
264
+ - tests/rails-8_capybara-3/features/step_definitions/overriding_steps.rb
265
+ - tests/rails-8_capybara-3/features/step_definitions/test_steps.rb
266
+ - tests/rails-8_capybara-3/features/support/env.rb
267
+ - tests/rails-8_capybara-3/features/support/paths.rb
268
+ - tests/rails-8_capybara-3/features/support/selectors.rb
269
+ - tests/rails-8_capybara-3/features/support/selenium.rb
270
+ - tests/rails-8_capybara-3/features/table_steps.feature
271
+ - tests/rails-8_capybara-3/features/time_steps.feature
272
+ - tests/rails-8_capybara-3/features/web_steps.feature
273
+ - tests/rails-8_capybara-3/lib/tasks/.keep
274
+ - tests/rails-8_capybara-3/lib/tasks/cucumber.rake
275
+ - tests/rails-8_capybara-3/log/.keep
276
+ - tests/rails-8_capybara-3/public/404.html
277
+ - tests/rails-8_capybara-3/public/422.html
278
+ - tests/rails-8_capybara-3/public/500.html
279
+ - tests/rails-8_capybara-3/public/favicon.ico
280
+ - tests/rails-8_capybara-3/public/fixture_files
281
+ - tests/rails-8_capybara-3/script/cucumber
215
282
  - tests/shared/app/controllers/application_controller.rb
216
283
  - tests/shared/app/controllers/authenticated_controller.rb
217
284
  - tests/shared/app/controllers/downloads_controller.rb
@@ -301,7 +368,7 @@ metadata:
301
368
  bug_tracker_uri: https://github.com/makandra/spreewald/issues
302
369
  changelog_uri: https://github.com/makandra/spreewald/blob/master/CHANGELOG.md
303
370
  rubygems_mfa_required: 'true'
304
- post_install_message:
371
+ post_install_message:
305
372
  rdoc_options: []
306
373
  require_paths:
307
374
  - lib
@@ -316,8 +383,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
316
383
  - !ruby/object:Gem::Version
317
384
  version: '0'
318
385
  requirements: []
319
- rubygems_version: 3.4.1
320
- signing_key:
386
+ rubygems_version: 3.4.22
387
+ signing_key:
321
388
  specification_version: 4
322
389
  summary: Collection of useful cucumber steps.
323
390
  test_files:
@@ -382,6 +449,67 @@ test_files:
382
449
  - tests/rails-7_capybara-3/public/favicon.ico
383
450
  - tests/rails-7_capybara-3/public/fixture_files
384
451
  - tests/rails-7_capybara-3/script/cucumber
452
+ - tests/rails-8_capybara-3/.ruby-version
453
+ - tests/rails-8_capybara-3/Gemfile
454
+ - tests/rails-8_capybara-3/Gemfile.lock
455
+ - tests/rails-8_capybara-3/README.md
456
+ - tests/rails-8_capybara-3/Rakefile
457
+ - tests/rails-8_capybara-3/app/controllers
458
+ - tests/rails-8_capybara-3/app/mailers/application_mailer.rb
459
+ - tests/rails-8_capybara-3/app/mailers/spreewald_mailer.rb
460
+ - tests/rails-8_capybara-3/app/models/application_record.rb
461
+ - tests/rails-8_capybara-3/app/views
462
+ - tests/rails-8_capybara-3/bin/bundle
463
+ - tests/rails-8_capybara-3/bin/rails
464
+ - tests/rails-8_capybara-3/bin/rake
465
+ - tests/rails-8_capybara-3/bin/setup
466
+ - tests/rails-8_capybara-3/config.ru
467
+ - tests/rails-8_capybara-3/config/application.rb
468
+ - tests/rails-8_capybara-3/config/boot.rb
469
+ - tests/rails-8_capybara-3/config/cucumber.yml
470
+ - tests/rails-8_capybara-3/config/database.yml
471
+ - tests/rails-8_capybara-3/config/environment.rb
472
+ - tests/rails-8_capybara-3/config/environments/development.rb
473
+ - tests/rails-8_capybara-3/config/environments/test.rb
474
+ - tests/rails-8_capybara-3/config/initializers/application_controller_renderer.rb
475
+ - tests/rails-8_capybara-3/config/initializers/backtrace_silencers.rb
476
+ - tests/rails-8_capybara-3/config/initializers/content_security_policy.rb
477
+ - tests/rails-8_capybara-3/config/initializers/cookies_serializer.rb
478
+ - tests/rails-8_capybara-3/config/initializers/filter_parameter_logging.rb
479
+ - tests/rails-8_capybara-3/config/initializers/inflections.rb
480
+ - tests/rails-8_capybara-3/config/initializers/mime_types.rb
481
+ - tests/rails-8_capybara-3/config/initializers/new_framework_defaults_6_1.rb
482
+ - tests/rails-8_capybara-3/config/initializers/permissions_policy.rb
483
+ - tests/rails-8_capybara-3/config/initializers/wrap_parameters.rb
484
+ - tests/rails-8_capybara-3/config/locales/en.yml
485
+ - tests/rails-8_capybara-3/config/routes.rb
486
+ - tests/rails-8_capybara-3/db
487
+ - tests/rails-8_capybara-3/features/browser_tab_steps.feature
488
+ - tests/rails-8_capybara-3/features/development_steps.feature
489
+ - tests/rails-8_capybara-3/features/email_steps.feature
490
+ - tests/rails-8_capybara-3/features/iframe_steps.feature
491
+ - tests/rails-8_capybara-3/features/overriding.feature
492
+ - tests/rails-8_capybara-3/features/session_steps.feature
493
+ - tests/rails-8_capybara-3/features/step_definitions/.gitkeep
494
+ - tests/rails-8_capybara-3/features/step_definitions/field_error_steps.rb
495
+ - tests/rails-8_capybara-3/features/step_definitions/overriding_steps.rb
496
+ - tests/rails-8_capybara-3/features/step_definitions/test_steps.rb
497
+ - tests/rails-8_capybara-3/features/support/env.rb
498
+ - tests/rails-8_capybara-3/features/support/paths.rb
499
+ - tests/rails-8_capybara-3/features/support/selectors.rb
500
+ - tests/rails-8_capybara-3/features/support/selenium.rb
501
+ - tests/rails-8_capybara-3/features/table_steps.feature
502
+ - tests/rails-8_capybara-3/features/time_steps.feature
503
+ - tests/rails-8_capybara-3/features/web_steps.feature
504
+ - tests/rails-8_capybara-3/lib/tasks/.keep
505
+ - tests/rails-8_capybara-3/lib/tasks/cucumber.rake
506
+ - tests/rails-8_capybara-3/log/.keep
507
+ - tests/rails-8_capybara-3/public/404.html
508
+ - tests/rails-8_capybara-3/public/422.html
509
+ - tests/rails-8_capybara-3/public/500.html
510
+ - tests/rails-8_capybara-3/public/favicon.ico
511
+ - tests/rails-8_capybara-3/public/fixture_files
512
+ - tests/rails-8_capybara-3/script/cucumber
385
513
  - tests/shared/app/controllers/application_controller.rb
386
514
  - tests/shared/app/controllers/authenticated_controller.rb
387
515
  - tests/shared/app/controllers/downloads_controller.rb