test_console 0.0.1

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 (65) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +37 -0
  4. data/bin/test_console +60 -0
  5. data/config/application.rb +50 -0
  6. data/config/boot.rb +10 -0
  7. data/config/database.yml +25 -0
  8. data/config/environment.rb +5 -0
  9. data/config/environments/development.rb +30 -0
  10. data/config/environments/production.rb +60 -0
  11. data/config/environments/test.rb +42 -0
  12. data/config/initializers/backtrace_silencers.rb +7 -0
  13. data/config/initializers/inflections.rb +10 -0
  14. data/config/initializers/mime_types.rb +5 -0
  15. data/config/initializers/secret_token.rb +7 -0
  16. data/config/initializers/session_store.rb +8 -0
  17. data/config/initializers/wrap_parameters.rb +14 -0
  18. data/config/locales/en.yml +5 -0
  19. data/config/routes.rb +58 -0
  20. data/lib/tasks/test_console_tasks.rake +4 -0
  21. data/lib/test_console/builder.rb +54 -0
  22. data/lib/test_console/history.rb +31 -0
  23. data/lib/test_console/monitor.rb +70 -0
  24. data/lib/test_console/output.rb +40 -0
  25. data/lib/test_console/runner.rb +108 -0
  26. data/lib/test_console/utility.rb +62 -0
  27. data/lib/test_console/version.rb +3 -0
  28. data/lib/test_console.rb +124 -0
  29. data/test/dummy/Rakefile +7 -0
  30. data/test/dummy/app/assets/javascripts/application.js +7 -0
  31. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  32. data/test/dummy/app/controllers/application_controller.rb +3 -0
  33. data/test/dummy/app/helpers/application_helper.rb +2 -0
  34. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  35. data/test/dummy/config/application.rb +50 -0
  36. data/test/dummy/config/boot.rb +10 -0
  37. data/test/dummy/config/database.yml +25 -0
  38. data/test/dummy/config/environment.rb +5 -0
  39. data/test/dummy/config/environments/development.rb +30 -0
  40. data/test/dummy/config/environments/production.rb +60 -0
  41. data/test/dummy/config/environments/test.rb +42 -0
  42. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  43. data/test/dummy/config/initializers/inflections.rb +10 -0
  44. data/test/dummy/config/initializers/mime_types.rb +5 -0
  45. data/test/dummy/config/initializers/secret_token.rb +7 -0
  46. data/test/dummy/config/initializers/session_store.rb +8 -0
  47. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  48. data/test/dummy/config/locales/en.yml +5 -0
  49. data/test/dummy/config/routes.rb +58 -0
  50. data/test/dummy/config.ru +4 -0
  51. data/test/dummy/db/test.sqlite3 +0 -0
  52. data/test/dummy/log/test.log +0 -0
  53. data/test/dummy/public/404.html +26 -0
  54. data/test/dummy/public/422.html +26 -0
  55. data/test/dummy/public/500.html +26 -0
  56. data/test/dummy/public/favicon.ico +0 -0
  57. data/test/dummy/script/rails +6 -0
  58. data/test/dummy/test/a_sample_test.rb +10 -0
  59. data/test/dummy/test/test_helper.rb +12 -0
  60. data/test/support/helpers/shared_helpers.rb +7 -0
  61. data/test/support/helpers/unit_helpers.rb +25 -0
  62. data/test/test_console/utility_test.rb +150 -0
  63. data/test/test_console_test.rb +11 -0
  64. data/test/test_helper.rb +9 -0
  65. metadata +235 -0
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters :format => [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,58 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation:
3
+ # first created -> highest priority.
4
+
5
+ # Sample of regular route:
6
+ # match 'products/:id' => 'catalog#view'
7
+ # Keep in mind you can assign values other than :controller and :action
8
+
9
+ # Sample of named route:
10
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11
+ # This route can be invoked with purchase_url(:id => product.id)
12
+
13
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
14
+ # resources :products
15
+
16
+ # Sample resource route with options:
17
+ # resources :products do
18
+ # member do
19
+ # get 'short'
20
+ # post 'toggle'
21
+ # end
22
+ #
23
+ # collection do
24
+ # get 'sold'
25
+ # end
26
+ # end
27
+
28
+ # Sample resource route with sub-resources:
29
+ # resources :products do
30
+ # resources :comments, :sales
31
+ # resource :seller
32
+ # end
33
+
34
+ # Sample resource route with more complex sub-resources
35
+ # resources :products do
36
+ # resources :comments
37
+ # resources :sales do
38
+ # get 'recent', :on => :collection
39
+ # end
40
+ # end
41
+
42
+ # Sample resource route within a namespace:
43
+ # namespace :admin do
44
+ # # Directs /admin/products/* to Admin::ProductsController
45
+ # # (app/controllers/admin/products_controller.rb)
46
+ # resources :products
47
+ # end
48
+
49
+ # You can have the root of your site routed with "root"
50
+ # just remember to delete public/index.html.
51
+ # root :to => 'welcome#index'
52
+
53
+ # See how all your routes lay out with "rake routes"
54
+
55
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
56
+ # Note: This route will make all actions in every controller accessible via GET requests.
57
+ # match ':controller(/:action(/:id(.:format)))'
58
+ end
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
File without changes
File without changes
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ <p>We've been notified about this issue and we'll take a look at it shortly.</p>
24
+ </div>
25
+ </body>
26
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class ASampleTest < ActiveSupport::TestCase
4
+
5
+ context 'a class' do
6
+ should 'work' do
7
+ assert true
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,12 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ #require "test/unit"
5
+ #require "shoulda"
6
+ #require "mocha"
7
+
8
+ #Rails.backtrace_cleaner.remove_silencers!
9
+
10
+ ## Load support files
11
+ #Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
12
+
@@ -0,0 +1,7 @@
1
+ class ActiveSupport::TestCase
2
+
3
+ def assert_false value, message=nil
4
+ assert !value, message
5
+ end
6
+
7
+ end
@@ -0,0 +1,25 @@
1
+ class ActiveSupport::TestCase
2
+
3
+ def self.described_class
4
+ class_name = self.to_s[0..-5]
5
+ class_name.constantize
6
+ end
7
+
8
+ class << self
9
+ def describe_class class_name, &block
10
+ context "#{class_name.to_s}" do
11
+ merge_block &block
12
+ end
13
+ end
14
+
15
+ def describe_method method, &block
16
+ context method do
17
+ merge_block &block
18
+ end
19
+ end
20
+
21
+ def subject
22
+ end
23
+ end
24
+
25
+ end
@@ -0,0 +1,150 @@
1
+ require 'test_helper'
2
+
3
+ class TestConsole::UtilityTest < ActiveSupport::TestCase
4
+ describe_class TestConsole::Utility do
5
+ describe_method '#class_from_filename' do
6
+ context 'when passed a filename that represents the path to a class' do
7
+ context 'when the path matches a class' do
8
+ setup do
9
+ class ::TestClass
10
+ end
11
+ end
12
+ should 'return an array containing the class name' do
13
+ assert_equal ['TestClass'], TestConsole::Utility.class_from_filename('test_class')
14
+ end
15
+ end
16
+
17
+ context 'when the path matches a namespaced class' do
18
+ setup do
19
+ module ::TestModule
20
+ class TestClass
21
+ end
22
+ end
23
+ end
24
+ should 'return the components as an array' do
25
+ assert_equal ['TestModule', 'TestClass'], TestConsole::Utility.class_from_filename('test_module/test_class')
26
+ end
27
+ end
28
+
29
+ end
30
+ end
31
+
32
+ describe_method '#const_defined?' do
33
+ context 'when the constant is defined as a class' do
34
+ setup do
35
+ class ::TestClass
36
+ end
37
+ end
38
+ should 'return true' do
39
+ assert TestConsole::Utility.const_defined?('TestClass')
40
+ end
41
+ end
42
+
43
+ context 'when the constant is defined as a module' do
44
+ setup do
45
+ module ::TestModule
46
+ end
47
+ end
48
+ should 'return true' do
49
+ assert TestConsole::Utility.const_defined?(['TestModule'])
50
+ end
51
+ end
52
+
53
+ context 'when the module is nested' do
54
+ setup do
55
+ module ::TestModule
56
+ class TestSubModule
57
+ end
58
+ end
59
+ end
60
+ should 'return true' do
61
+ assert TestConsole::Utility.const_defined?(['TestModule', 'TestSubModule'])
62
+ end
63
+ end
64
+
65
+ context 'when the class is nested' do
66
+ setup do
67
+ module ::TestModule
68
+ class TestClass
69
+ end
70
+ end
71
+ end
72
+ should 'return true' do
73
+ assert TestConsole::Utility.const_defined?(['TestModule', 'TestClass'])
74
+ end
75
+ end
76
+
77
+ context 'when there is no matching constant' do
78
+ should 'return false' do
79
+ assert_false TestConsole::Utility.const_defined?(['Something', 'Nonsensical'])
80
+ end
81
+ end
82
+
83
+ end
84
+
85
+ describe_method '#const_remove' do
86
+ context 'when the constant is defined as a class' do
87
+ setup do
88
+ class ::TestClass
89
+ end
90
+ end
91
+ should 'remove the constant' do
92
+ assert TestConsole::Utility.const_defined?('TestClass')
93
+ TestConsole::Utility.const_remove('TestClass')
94
+ assert_false TestConsole::Utility.const_defined?('TestClass')
95
+ end
96
+ end
97
+
98
+ context 'when the constant is defined as a module' do
99
+ setup do
100
+ module ::TestModule
101
+ end
102
+ end
103
+ should 'remove the constant' do
104
+ assert TestConsole::Utility.const_defined?('TestModule')
105
+ TestConsole::Utility.const_remove('TestModule')
106
+ assert_false TestConsole::Utility.const_defined?('TestModule')
107
+ end
108
+ end
109
+
110
+ context 'when the module is nested' do
111
+ setup do
112
+ module ::TestModule
113
+ class TestSubModule
114
+ end
115
+ end
116
+ end
117
+ should 'remove the constant' do
118
+ assert TestConsole::Utility.const_defined?(['TestModule', 'TestSubModule'])
119
+ TestConsole::Utility.const_remove(['TestModule', 'TestSubModule'])
120
+ assert_false TestConsole::Utility.const_defined?(['TestModule', 'TestSubModule'])
121
+ end
122
+ end
123
+
124
+ context 'when the class is nested' do
125
+ setup do
126
+ module ::TestModule
127
+ class TestClass
128
+ end
129
+ end
130
+ end
131
+ should 'remove the constant' do
132
+ assert TestConsole::Utility.const_defined?(['TestModule', 'TestClass'])
133
+ TestConsole::Utility.const_remove(['TestModule', 'TestClass'])
134
+ assert_false TestConsole::Utility.const_defined?(['TestModule', 'TestClass'])
135
+ end
136
+ end
137
+
138
+ context 'when there is no matching constant' do
139
+ should 'raise an error' do
140
+ TestConsole::Utility.const_remove 'TestClass' if TestConsole::Utility.const_defined?('TestClass')
141
+ assert_false TestConsole::Utility.const_defined?('TestClass')
142
+ assert_raise NameError do
143
+ TestConsole::Utility.const_remove('TestClass')
144
+ end
145
+ end
146
+ end
147
+ end
148
+
149
+ end
150
+ end
@@ -0,0 +1,11 @@
1
+ require 'test_helper'
2
+
3
+ class TestConsoleTest < ActiveSupport::TestCase
4
+ describe_class TestConsole do
5
+ describe_method 'something' do
6
+ should 'work' do
7
+ assert true
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,9 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
metadata ADDED
@@ -0,0 +1,235 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: test_console
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Adam Phillips
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2012-07-11 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ prerelease: false
22
+ version_requirements: &id001 !ruby/object:Gem::Requirement
23
+ none: false
24
+ requirements:
25
+ - - ~>
26
+ - !ruby/object:Gem::Version
27
+ hash: 3
28
+ segments:
29
+ - 3
30
+ - 1
31
+ - 0
32
+ version: 3.1.0
33
+ requirement: *id001
34
+ name: rails
35
+ type: :runtime
36
+ - !ruby/object:Gem::Dependency
37
+ prerelease: false
38
+ version_requirements: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ hash: 3
44
+ segments:
45
+ - 0
46
+ version: "0"
47
+ requirement: *id002
48
+ name: aruba
49
+ type: :development
50
+ - !ruby/object:Gem::Dependency
51
+ prerelease: false
52
+ version_requirements: &id003 !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ hash: 3
58
+ segments:
59
+ - 0
60
+ version: "0"
61
+ requirement: *id003
62
+ name: mocha
63
+ type: :development
64
+ - !ruby/object:Gem::Dependency
65
+ prerelease: false
66
+ version_requirements: &id004 !ruby/object:Gem::Requirement
67
+ none: false
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ hash: 3
72
+ segments:
73
+ - 0
74
+ version: "0"
75
+ requirement: *id004
76
+ name: shoulda
77
+ type: :development
78
+ - !ruby/object:Gem::Dependency
79
+ prerelease: false
80
+ version_requirements: &id005 !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ hash: 3
86
+ segments:
87
+ - 0
88
+ version: "0"
89
+ requirement: *id005
90
+ name: sqlite3
91
+ type: :development
92
+ description: Console for testing Rails applications with TestUnit.
93
+ email:
94
+ - adam@indivisible.org.uk
95
+ executables:
96
+ - test_console
97
+ extensions: []
98
+
99
+ extra_rdoc_files: []
100
+
101
+ files:
102
+ - config/application.rb
103
+ - config/boot.rb
104
+ - config/database.yml
105
+ - config/environment.rb
106
+ - config/environments/development.rb
107
+ - config/environments/production.rb
108
+ - config/environments/test.rb
109
+ - config/initializers/backtrace_silencers.rb
110
+ - config/initializers/inflections.rb
111
+ - config/initializers/mime_types.rb
112
+ - config/initializers/secret_token.rb
113
+ - config/initializers/session_store.rb
114
+ - config/initializers/wrap_parameters.rb
115
+ - config/locales/en.yml
116
+ - config/routes.rb
117
+ - lib/tasks/test_console_tasks.rake
118
+ - lib/test_console/builder.rb
119
+ - lib/test_console/history.rb
120
+ - lib/test_console/monitor.rb
121
+ - lib/test_console/output.rb
122
+ - lib/test_console/runner.rb
123
+ - lib/test_console/utility.rb
124
+ - lib/test_console/version.rb
125
+ - lib/test_console.rb
126
+ - MIT-LICENSE
127
+ - Rakefile
128
+ - README.rdoc
129
+ - test/dummy/app/assets/javascripts/application.js
130
+ - test/dummy/app/assets/stylesheets/application.css
131
+ - test/dummy/app/controllers/application_controller.rb
132
+ - test/dummy/app/helpers/application_helper.rb
133
+ - test/dummy/app/views/layouts/application.html.erb
134
+ - test/dummy/config/application.rb
135
+ - test/dummy/config/boot.rb
136
+ - test/dummy/config/database.yml
137
+ - test/dummy/config/environment.rb
138
+ - test/dummy/config/environments/development.rb
139
+ - test/dummy/config/environments/production.rb
140
+ - test/dummy/config/environments/test.rb
141
+ - test/dummy/config/initializers/backtrace_silencers.rb
142
+ - test/dummy/config/initializers/inflections.rb
143
+ - test/dummy/config/initializers/mime_types.rb
144
+ - test/dummy/config/initializers/secret_token.rb
145
+ - test/dummy/config/initializers/session_store.rb
146
+ - test/dummy/config/initializers/wrap_parameters.rb
147
+ - test/dummy/config/locales/en.yml
148
+ - test/dummy/config/routes.rb
149
+ - test/dummy/config.ru
150
+ - test/dummy/db/test.sqlite3
151
+ - test/dummy/log/test.log
152
+ - test/dummy/public/404.html
153
+ - test/dummy/public/422.html
154
+ - test/dummy/public/500.html
155
+ - test/dummy/public/favicon.ico
156
+ - test/dummy/Rakefile
157
+ - test/dummy/script/rails
158
+ - test/dummy/test/a_sample_test.rb
159
+ - test/dummy/test/test_helper.rb
160
+ - test/support/helpers/shared_helpers.rb
161
+ - test/support/helpers/unit_helpers.rb
162
+ - test/test_console/utility_test.rb
163
+ - test/test_console_test.rb
164
+ - test/test_helper.rb
165
+ - bin/test_console
166
+ homepage: https://github.com/adamphillips/test_console
167
+ licenses: []
168
+
169
+ post_install_message:
170
+ rdoc_options: []
171
+
172
+ require_paths:
173
+ - lib
174
+ required_ruby_version: !ruby/object:Gem::Requirement
175
+ none: false
176
+ requirements:
177
+ - - ">="
178
+ - !ruby/object:Gem::Version
179
+ hash: 3
180
+ segments:
181
+ - 0
182
+ version: "0"
183
+ required_rubygems_version: !ruby/object:Gem::Requirement
184
+ none: false
185
+ requirements:
186
+ - - ">="
187
+ - !ruby/object:Gem::Version
188
+ hash: 3
189
+ segments:
190
+ - 0
191
+ version: "0"
192
+ requirements: []
193
+
194
+ rubyforge_project:
195
+ rubygems_version: 1.8.10
196
+ signing_key:
197
+ specification_version: 3
198
+ summary: Console for testing Ruby on Rails applications.
199
+ test_files:
200
+ - test/dummy/app/assets/javascripts/application.js
201
+ - test/dummy/app/assets/stylesheets/application.css
202
+ - test/dummy/app/controllers/application_controller.rb
203
+ - test/dummy/app/helpers/application_helper.rb
204
+ - test/dummy/app/views/layouts/application.html.erb
205
+ - test/dummy/config/application.rb
206
+ - test/dummy/config/boot.rb
207
+ - test/dummy/config/database.yml
208
+ - test/dummy/config/environment.rb
209
+ - test/dummy/config/environments/development.rb
210
+ - test/dummy/config/environments/production.rb
211
+ - test/dummy/config/environments/test.rb
212
+ - test/dummy/config/initializers/backtrace_silencers.rb
213
+ - test/dummy/config/initializers/inflections.rb
214
+ - test/dummy/config/initializers/mime_types.rb
215
+ - test/dummy/config/initializers/secret_token.rb
216
+ - test/dummy/config/initializers/session_store.rb
217
+ - test/dummy/config/initializers/wrap_parameters.rb
218
+ - test/dummy/config/locales/en.yml
219
+ - test/dummy/config/routes.rb
220
+ - test/dummy/config.ru
221
+ - test/dummy/db/test.sqlite3
222
+ - test/dummy/log/test.log
223
+ - test/dummy/public/404.html
224
+ - test/dummy/public/422.html
225
+ - test/dummy/public/500.html
226
+ - test/dummy/public/favicon.ico
227
+ - test/dummy/Rakefile
228
+ - test/dummy/script/rails
229
+ - test/dummy/test/a_sample_test.rb
230
+ - test/dummy/test/test_helper.rb
231
+ - test/support/helpers/shared_helpers.rb
232
+ - test/support/helpers/unit_helpers.rb
233
+ - test/test_console/utility_test.rb
234
+ - test/test_console_test.rb
235
+ - test/test_helper.rb