booties 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 (59) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +35 -0
  4. data/app/assets/javascripts/booties/application.js +13 -0
  5. data/app/assets/stylesheets/booties/application.css +15 -0
  6. data/app/controllers/booties/application_controller.rb +4 -0
  7. data/app/helpers/booties/application_helper.rb +80 -0
  8. data/app/views/layouts/booties/application.html.erb +14 -0
  9. data/config/routes.rb +2 -0
  10. data/lib/booties.rb +4 -0
  11. data/lib/booties/engine.rb +5 -0
  12. data/lib/booties/version.rb +3 -0
  13. data/lib/tasks/booties_tasks.rake +4 -0
  14. data/test/booties_test.rb +7 -0
  15. data/test/dummy/README.rdoc +28 -0
  16. data/test/dummy/Rakefile +6 -0
  17. data/test/dummy/app/assets/javascripts/application.js +13 -0
  18. data/test/dummy/app/assets/javascripts/home.js +2 -0
  19. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  20. data/test/dummy/app/assets/stylesheets/home.css +4 -0
  21. data/test/dummy/app/controllers/application_controller.rb +7 -0
  22. data/test/dummy/app/controllers/home_controller.rb +4 -0
  23. data/test/dummy/app/helpers/application_helper.rb +2 -0
  24. data/test/dummy/app/helpers/home_helper.rb +2 -0
  25. data/test/dummy/app/views/home/show.html.erb +10 -0
  26. data/test/dummy/app/views/layouts/application.html.erb +16 -0
  27. data/test/dummy/bin/bundle +3 -0
  28. data/test/dummy/bin/rails +4 -0
  29. data/test/dummy/bin/rake +4 -0
  30. data/test/dummy/bin/setup +29 -0
  31. data/test/dummy/config.ru +4 -0
  32. data/test/dummy/config/application.rb +29 -0
  33. data/test/dummy/config/boot.rb +5 -0
  34. data/test/dummy/config/environment.rb +5 -0
  35. data/test/dummy/config/environments/development.rb +38 -0
  36. data/test/dummy/config/environments/production.rb +76 -0
  37. data/test/dummy/config/environments/test.rb +42 -0
  38. data/test/dummy/config/initializers/assets.rb +11 -0
  39. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  40. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  41. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  42. data/test/dummy/config/initializers/inflections.rb +16 -0
  43. data/test/dummy/config/initializers/mime_types.rb +4 -0
  44. data/test/dummy/config/initializers/session_store.rb +3 -0
  45. data/test/dummy/config/initializers/wrap_parameters.rb +9 -0
  46. data/test/dummy/config/locales/en.yml +23 -0
  47. data/test/dummy/config/routes.rb +8 -0
  48. data/test/dummy/config/secrets.yml +22 -0
  49. data/test/dummy/log/development.log +0 -0
  50. data/test/dummy/log/test.log +669 -0
  51. data/test/dummy/public/404.html +67 -0
  52. data/test/dummy/public/422.html +67 -0
  53. data/test/dummy/public/500.html +66 -0
  54. data/test/dummy/public/favicon.ico +0 -0
  55. data/test/dummy/test/controllers/home_controller_test.rb +25 -0
  56. data/test/helpers/booties/application_helper_test.rb +35 -0
  57. data/test/integration/navigation_test.rb +9 -0
  58. data/test/test_helper.rb +25 -0
  59. metadata +216 -0
@@ -0,0 +1,5 @@
1
+ # Set up gems listed in the Gemfile.
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
5
+ $LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,5 @@
1
+ # Load the Rails application.
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the Rails application.
5
+ Rails.application.initialize!
@@ -0,0 +1,38 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
+
12
+ # Show full error reports and disable caching.
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send.
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger.
20
+ config.active_support.deprecation = :log
21
+
22
+ # Debug mode disables concatenation and preprocessing of assets.
23
+ # This option may cause significant delays in view rendering with a large
24
+ # number of complex assets.
25
+ config.assets.debug = true
26
+
27
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
28
+ # yet still be able to expire them through the digest params.
29
+ config.assets.digest = true
30
+
31
+ # Adds additional error checking when serving assets at runtime.
32
+ # Checks for improperly declared sprockets dependencies.
33
+ # Raises helpful error messages.
34
+ config.assets.raise_runtime_errors = true
35
+
36
+ # Raises error for missing translations
37
+ # config.action_view.raise_on_missing_translations = true
38
+ end
@@ -0,0 +1,76 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both threaded web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like
20
+ # NGINX, varnish or squid.
21
+ # config.action_dispatch.rack_cache = true
22
+
23
+ # Disable serving static files from the `/public` folder by default since
24
+ # Apache or NGINX already handles this.
25
+ config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
26
+
27
+ # Compress JavaScripts and CSS.
28
+ config.assets.js_compressor = :uglifier
29
+ # config.assets.css_compressor = :sass
30
+
31
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
32
+ config.assets.compile = false
33
+
34
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
35
+ # yet still be able to expire them through the digest params.
36
+ config.assets.digest = true
37
+
38
+ # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
39
+
40
+ # Specifies the header that your server uses for sending files.
41
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
42
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
43
+
44
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
45
+ # config.force_ssl = true
46
+
47
+ # Use the lowest log level to ensure availability of diagnostic information
48
+ # when problems arise.
49
+ config.log_level = :debug
50
+
51
+ # Prepend all log lines with the following tags.
52
+ # config.log_tags = [ :subdomain, :uuid ]
53
+
54
+ # Use a different logger for distributed setups.
55
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
56
+
57
+ # Use a different cache store in production.
58
+ # config.cache_store = :mem_cache_store
59
+
60
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
61
+ # config.action_controller.asset_host = 'http://assets.example.com'
62
+
63
+ # Ignore bad email addresses and do not raise email delivery errors.
64
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
65
+ # config.action_mailer.raise_delivery_errors = false
66
+
67
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
68
+ # the I18n.default_locale when a translation cannot be found).
69
+ config.i18n.fallbacks = true
70
+
71
+ # Send deprecation notices to registered listeners.
72
+ config.active_support.deprecation = :notify
73
+
74
+ # Use default logging formatter so that PID and timestamp are not suppressed.
75
+ config.log_formatter = ::Logger::Formatter.new
76
+ end
@@ -0,0 +1,42 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
37
+ # Print deprecation notices to the stderr.
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Raises error for missing translations
41
+ # config.action_view.raise_on_missing_translations = true
42
+ end
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,9 @@
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] if respond_to?(:wrap_parameters)
9
+ end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,8 @@
1
+ Rails.application.routes.draw do
2
+
3
+ get 'home/show'
4
+
5
+ get 'breadcrumbs/show'
6
+
7
+ mount Booties::Engine => "/booties"
8
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 0faeda07a6d13dca92a156dbbe9926c592dc0a219bdb8f23ef20b2b5d7ee176ba0b3a13d93aa1ef9811e6201441b02480b01574dab4ef78483c41fd5749904fd
15
+
16
+ test:
17
+ secret_key_base: 9215640735810c5bf6536b51244e5513e016d16b6fa630f2263150d8b5414e570bb55f45567e5ba4f670ceb17307735bdfe11312ba2195849ac337231e2b749c
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
File without changes
@@ -0,0 +1,669 @@
1
+ -----------------------
2
+ BootiesTest: test_truth
3
+ -----------------------
4
+ -----------------------
5
+ BootiesTest: test_truth
6
+ -----------------------
7
+ ------------------------------------
8
+ Booties::ApplicationHelper: test_foo
9
+ ------------------------------------
10
+ ------------------------------------
11
+ Booties::ApplicationHelper: test_foo
12
+ ------------------------------------
13
+ ------------------------------------
14
+ Booties::ApplicationHelper: test_foo
15
+ ------------------------------------
16
+ ------------------------------------
17
+ Booties::ApplicationHelper: test_foo
18
+ ------------------------------------
19
+ ----------------------------------------
20
+ Booties::ApplicationHelperTest: test_foo
21
+ ----------------------------------------
22
+ ----------------------------------------
23
+ Booties::ApplicationHelperTest: test_foo
24
+ ----------------------------------------
25
+ ----------------------------------------------------------------------------------------------------
26
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
27
+ ----------------------------------------------------------------------------------------------------
28
+ ----------------------------------------------------------------------------------------------------
29
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
30
+ ----------------------------------------------------------------------------------------------------
31
+ ----------------------------------------------------------------------------------------------------
32
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
33
+ ----------------------------------------------------------------------------------------------------
34
+ -------------------------------------------------------------------
35
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
36
+ -------------------------------------------------------------------
37
+ ----------------------------------------------------------------------------------------------------
38
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
39
+ ----------------------------------------------------------------------------------------------------
40
+ -------------------------------------------------------------------
41
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
42
+ -------------------------------------------------------------------
43
+ ----------------------------------------------------------------------------------------------------
44
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
45
+ ----------------------------------------------------------------------------------------------------
46
+ --------------------------------------------------------------------------
47
+ Booties::ApplicationHelperTest: test_#flag_preserves_miscellaenous_options
48
+ --------------------------------------------------------------------------
49
+ -------------------------------------------------------------------
50
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
51
+ -------------------------------------------------------------------
52
+ ----------------------------------------------------------------------------------------------------
53
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
54
+ ----------------------------------------------------------------------------------------------------
55
+ -------------------------------------------------------------------
56
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
57
+ -------------------------------------------------------------------
58
+ --------------------------------------------------------------------------
59
+ Booties::ApplicationHelperTest: test_#flag_preserves_miscellaenous_options
60
+ --------------------------------------------------------------------------
61
+ ----------------------------------------------------------------------------------------------------
62
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
63
+ ----------------------------------------------------------------------------------------------------
64
+ ----------------------------------------------------------------------------------------------------
65
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
66
+ ----------------------------------------------------------------------------------------------------
67
+ --------------------------------------------------------------------------
68
+ Booties::ApplicationHelperTest: test_#flag_preserves_miscellaenous_options
69
+ --------------------------------------------------------------------------
70
+ -------------------------------------------------------------------
71
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
72
+ -------------------------------------------------------------------
73
+ ----------------------------------------------------------------------------------------------------
74
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
75
+ ----------------------------------------------------------------------------------------------------
76
+ ---------------------------------------------------------------------
77
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
78
+ ---------------------------------------------------------------------
79
+ --------------------------------------------------------------------------
80
+ Booties::ApplicationHelperTest: test_#flag_preserves_miscellaenous_options
81
+ --------------------------------------------------------------------------
82
+ -------------------------------------------------------------------
83
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
84
+ -------------------------------------------------------------------
85
+ --------------------------------------------------------------------------
86
+ Booties::ApplicationHelperTest: test_#flag_preserves_miscellaenous_options
87
+ --------------------------------------------------------------------------
88
+ -------------------------------------------------------------------
89
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
90
+ -------------------------------------------------------------------
91
+ ---------------------------------------------------------------------
92
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
93
+ ---------------------------------------------------------------------
94
+ ----------------------------------------------------------------------------------------------------
95
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
96
+ ----------------------------------------------------------------------------------------------------
97
+ --------------------------------------------------------------------------
98
+ Booties::ApplicationHelperTest: test_#flag_preserves_miscellaenous_options
99
+ --------------------------------------------------------------------------
100
+ ---------------------------------------------------------------------
101
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
102
+ ---------------------------------------------------------------------
103
+ ----------------------------------------------------------------------------------------------------
104
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
105
+ ----------------------------------------------------------------------------------------------------
106
+ -------------------------------------------------------------------
107
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
108
+ -------------------------------------------------------------------
109
+ ---------------------------------------------------------------------
110
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
111
+ ---------------------------------------------------------------------
112
+ -------------------------------------------------------------------
113
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
114
+ -------------------------------------------------------------------
115
+ ----------------------------------------------------------------------------------------------------
116
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
117
+ ----------------------------------------------------------------------------------------------------
118
+ --------------------------------------------------------------------------
119
+ Booties::ApplicationHelperTest: test_#flag_preserves_miscellaenous_options
120
+ --------------------------------------------------------------------------
121
+ --------------------------------------------------------------------------
122
+ Booties::ApplicationHelperTest: test_#flag_preserves_miscellaenous_options
123
+ --------------------------------------------------------------------------
124
+ -------------------------------------------------------------------
125
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
126
+ -------------------------------------------------------------------
127
+ ---------------------------------------------------------------------
128
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
129
+ ---------------------------------------------------------------------
130
+ ----------------------------------------------------------------------------------------------------
131
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
132
+ ----------------------------------------------------------------------------------------------------
133
+ ----------------------------------------------------------------------------------------------------
134
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
135
+ ----------------------------------------------------------------------------------------------------
136
+ --------------------------------------------------------------------------
137
+ Booties::ApplicationHelperTest: test_#flag_preserves_miscellaenous_options
138
+ --------------------------------------------------------------------------
139
+ ---------------------------------------------------------------------
140
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
141
+ ---------------------------------------------------------------------
142
+ -------------------------------------------------------------------
143
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
144
+ -------------------------------------------------------------------
145
+ -------------------------------------------------------------------
146
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
147
+ -------------------------------------------------------------------
148
+ ----------------------------------------------------------------------------------------------------
149
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
150
+ ----------------------------------------------------------------------------------------------------
151
+ ---------------------------------------------------------------------
152
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
153
+ ---------------------------------------------------------------------
154
+ --------------------------------------------------------------------------
155
+ Booties::ApplicationHelperTest: test_#flag_preserves_miscellaenous_options
156
+ --------------------------------------------------------------------------
157
+ ---------------------------------------------------------------------
158
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
159
+ ---------------------------------------------------------------------
160
+ -------------------------------------------------------------------------------------
161
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
162
+ -------------------------------------------------------------------------------------
163
+ --------------------------------------------------------------------------
164
+ Booties::ApplicationHelperTest: test_#flag_preserves_miscellaenous_options
165
+ --------------------------------------------------------------------------
166
+ ----------------------------------------------------------------------------------------------------
167
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
168
+ ----------------------------------------------------------------------------------------------------
169
+ -------------------------------------------------------------------
170
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
171
+ -------------------------------------------------------------------
172
+ ----------------------------------------------------------------------------------------------------
173
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
174
+ ----------------------------------------------------------------------------------------------------
175
+ ---------------------------------------------------------------------
176
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
177
+ ---------------------------------------------------------------------
178
+ -------------------------------------------------------------------
179
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
180
+ -------------------------------------------------------------------
181
+ --------------------------------------------------------------------------
182
+ Booties::ApplicationHelperTest: test_#flag_preserves_miscellaenous_options
183
+ --------------------------------------------------------------------------
184
+ -------------------------------------------------------------------------------------
185
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
186
+ -------------------------------------------------------------------------------------
187
+ ----------------------------------------------------------------------------------------------------
188
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
189
+ ----------------------------------------------------------------------------------------------------
190
+ ---------------------------------------------------------------------
191
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
192
+ ---------------------------------------------------------------------
193
+ -------------------------------------------------------------------------------------
194
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
195
+ -------------------------------------------------------------------------------------
196
+ --------------------------------------------------------------------------
197
+ Booties::ApplicationHelperTest: test_#flag_preserves_miscellaenous_options
198
+ --------------------------------------------------------------------------
199
+ -------------------------------------------------------------------
200
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
201
+ -------------------------------------------------------------------
202
+ -------------------------------------------------------------------------------------
203
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
204
+ -------------------------------------------------------------------------------------
205
+ -------------------------------------------------------------------------------------
206
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
207
+ -------------------------------------------------------------------------------------
208
+ ----------------------------------------------------------------------------------------------------
209
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
210
+ ----------------------------------------------------------------------------------------------------
211
+ -------------------------------------------------------------------------------------
212
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
213
+ -------------------------------------------------------------------------------------
214
+ --------------------------------------------------------------------------
215
+ Booties::ApplicationHelperTest: test_#flag_preserves_miscellaenous_options
216
+ --------------------------------------------------------------------------
217
+ ---------------------------------------------------------------------
218
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
219
+ ---------------------------------------------------------------------
220
+ -------------------------------------------------------------------
221
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
222
+ -------------------------------------------------------------------
223
+ -------------------------------------------------------------------
224
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
225
+ -------------------------------------------------------------------
226
+ ---------------------------------------------------------------------
227
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
228
+ ---------------------------------------------------------------------
229
+ -------------------------------------------------------------------------------------
230
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
231
+ -------------------------------------------------------------------------------------
232
+ ----------------------------------------------------------------------------------------------------
233
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
234
+ ----------------------------------------------------------------------------------------------------
235
+ --------------------------------------------------------------------------
236
+ Booties::ApplicationHelperTest: test_#flag_preserves_miscellaenous_options
237
+ --------------------------------------------------------------------------
238
+ -----------------------
239
+ BootiesTest: test_truth
240
+ -----------------------
241
+ -------------------------------------------------------------------
242
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
243
+ -------------------------------------------------------------------
244
+ ---------------------------------------------------------------------
245
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
246
+ ---------------------------------------------------------------------
247
+ -------------------------------------------------------------------------------------
248
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
249
+ -------------------------------------------------------------------------------------
250
+ --------------------------------------------------------------------------
251
+ Booties::ApplicationHelperTest: test_#flag_preserves_miscellaenous_options
252
+ --------------------------------------------------------------------------
253
+ ----------------------------------------------------------------------------------------------------
254
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
255
+ ----------------------------------------------------------------------------------------------------
256
+ -------------------------------------------------------------------
257
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
258
+ -------------------------------------------------------------------
259
+ -----------------------------------------------------------------------------------------------
260
+ Booties::ApplicationHelperTest: test_#flag_passes_miscellaneous_options_through_to_#content_tag
261
+ -----------------------------------------------------------------------------------------------
262
+ -------------------------------------------------------------------------------------
263
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
264
+ -------------------------------------------------------------------------------------
265
+ ---------------------------------------------------------------------
266
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
267
+ ---------------------------------------------------------------------
268
+ ----------------------------------------------------------------------------------------------------
269
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_"label"_and_"label-default"_classes
270
+ ----------------------------------------------------------------------------------------------------
271
+ -----------------------------------------------------------------------------------
272
+ Booties::ApplicationHelperTest: test_#breadcrumbs_provides_content_for_:breadcrumbs
273
+ -----------------------------------------------------------------------------------
274
+ -------------------------------------------------------------------------------------
275
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
276
+ -------------------------------------------------------------------------------------
277
+ -------------------------------------------------------------------
278
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
279
+ -------------------------------------------------------------------
280
+ ---------------------------------------------------------------------
281
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
282
+ ---------------------------------------------------------------------
283
+ ------------------------------------------------------------------------------
284
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_label_classes
285
+ ------------------------------------------------------------------------------
286
+ -----------------------------------------------------------------------------------------------
287
+ Booties::ApplicationHelperTest: test_#flag_passes_miscellaneous_options_through_to_#content_tag
288
+ -----------------------------------------------------------------------------------------------
289
+ -------------------------------------------------------------------------------------
290
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
291
+ -------------------------------------------------------------------------------------
292
+ -----------------------------------------------------------------------------------
293
+ Booties::ApplicationHelperTest: test_#breadcrumbs_provides_content_for_:breadcrumbs
294
+ -----------------------------------------------------------------------------------
295
+ -------------------------------------------------------------------
296
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
297
+ -------------------------------------------------------------------
298
+ ---------------------------------------------------------------------
299
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
300
+ ---------------------------------------------------------------------
301
+ -----------------------------------------------------------------------------------------------
302
+ Booties::ApplicationHelperTest: test_#flag_passes_miscellaneous_options_through_to_#content_tag
303
+ -----------------------------------------------------------------------------------------------
304
+ ------------------------------------------------------------------------------
305
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_label_classes
306
+ ------------------------------------------------------------------------------
307
+ -------------------------------------------------------------------------------------
308
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
309
+ -------------------------------------------------------------------------------------
310
+ ---------------------------------------------------------------------------------------------
311
+ Booties::ApplicationHelperTest: test_#render_breadcrumbs_renders_ol_tag_with_breadcrumb_class
312
+ ---------------------------------------------------------------------------------------------
313
+ ------------------------------------------------------------------------------
314
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_label_classes
315
+ ------------------------------------------------------------------------------
316
+ ---------------------------------------------------------------------
317
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
318
+ ---------------------------------------------------------------------
319
+ -------------------------------------------------------------------
320
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
321
+ -------------------------------------------------------------------
322
+ -----------------------------------------------------------------------------------------------
323
+ Booties::ApplicationHelperTest: test_#flag_passes_miscellaneous_options_through_to_#content_tag
324
+ -----------------------------------------------------------------------------------------------
325
+ -----------------------------------------------------------------------------------------------
326
+ Booties::ApplicationHelperTest: test_#flag_passes_miscellaneous_options_through_to_#content_tag
327
+ -----------------------------------------------------------------------------------------------
328
+ ------------------------------------------------------------------------------
329
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_label_classes
330
+ ------------------------------------------------------------------------------
331
+ ---------------------------------------------------------------------
332
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
333
+ ---------------------------------------------------------------------
334
+ -------------------------------------------------------------------------------------
335
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
336
+ -------------------------------------------------------------------------------------
337
+ -------------------------------------------------------------------
338
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
339
+ -------------------------------------------------------------------
340
+ ---------------------------------------------------------------------------------------------
341
+ Booties::ApplicationHelperTest: test_#render_breadcrumbs_renders_ol_tag_with_breadcrumb_class
342
+ ---------------------------------------------------------------------------------------------
343
+ -----------------------------------------------------------------------------------------------
344
+ Booties::ApplicationHelperTest: test_#flag_passes_miscellaneous_options_through_to_#content_tag
345
+ -----------------------------------------------------------------------------------------------
346
+ ---------------------------------------------------------------------
347
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
348
+ ---------------------------------------------------------------------
349
+ -------------------------------------------------------------------------------------
350
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
351
+ -------------------------------------------------------------------------------------
352
+ -------------------------------------------------------------------
353
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
354
+ -------------------------------------------------------------------
355
+ ---------------------------------------------------------------------------------------------
356
+ Booties::ApplicationHelperTest: test_#render_breadcrumbs_renders_ol_tag_with_breadcrumb_class
357
+ ---------------------------------------------------------------------------------------------
358
+ ------------------------------------------------------------------------------
359
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_label_classes
360
+ ------------------------------------------------------------------------------
361
+ ---------------------------------------------------------------------------------------------
362
+ Booties::ApplicationHelperTest: test_#render_breadcrumbs_renders_ol_tag_with_breadcrumb_class
363
+ ---------------------------------------------------------------------------------------------
364
+ ------------------------------------------------------------------------------
365
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_label_classes
366
+ ------------------------------------------------------------------------------
367
+ -----------------------------------------------------------------------------------------------
368
+ Booties::ApplicationHelperTest: test_#flag_passes_miscellaneous_options_through_to_#content_tag
369
+ -----------------------------------------------------------------------------------------------
370
+ -------------------------------------------------------------------
371
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
372
+ -------------------------------------------------------------------
373
+ ---------------------------------------------------------------------
374
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
375
+ ---------------------------------------------------------------------
376
+ -------------------------------------------------------------------------------------
377
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
378
+ -------------------------------------------------------------------------------------
379
+ -----------------------
380
+ BootiesTest: test_truth
381
+ -----------------------
382
+ ---------------------------------------------------------------------
383
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
384
+ ---------------------------------------------------------------------
385
+ -------------------------------------------------------------------------------------
386
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
387
+ -------------------------------------------------------------------------------------
388
+ -------------------------------------------------------------------
389
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
390
+ -------------------------------------------------------------------
391
+ ------------------------------------------------------------------------------
392
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_label_classes
393
+ ------------------------------------------------------------------------------
394
+ -----------------------------------------------------------------------------------------------
395
+ Booties::ApplicationHelperTest: test_#flag_passes_miscellaneous_options_through_to_#content_tag
396
+ -----------------------------------------------------------------------------------------------
397
+ ---------------------------------------------------------------------------------------------
398
+ Booties::ApplicationHelperTest: test_#render_breadcrumbs_renders_ol_tag_with_breadcrumb_class
399
+ ---------------------------------------------------------------------------------------------
400
+ -------------------------------------------------
401
+ HomeControllerTest: test_page_renders_breadcrumbs
402
+ -------------------------------------------------
403
+ Processing by HomeController#show as HTML
404
+ Rendered home/show.html.erb within layouts/application (0.3ms)
405
+ Completed 200 OK in 7ms (Views: 7.1ms)
406
+ ----------------------------------------
407
+ HomeControllerTest: test_should_get_show
408
+ ----------------------------------------
409
+ Processing by HomeController#show as HTML
410
+ Rendered home/show.html.erb within layouts/application (0.0ms)
411
+ Completed 200 OK in 1ms (Views: 0.6ms)
412
+ -------------------------------------------------
413
+ HomeControllerTest: test_page_renders_breadcrumbs
414
+ -------------------------------------------------
415
+ Processing by HomeController#show as HTML
416
+ Rendered home/show.html.erb within layouts/application (1.5ms)
417
+ Completed 200 OK in 10ms (Views: 10.1ms)
418
+ ----------------------------------------
419
+ HomeControllerTest: test_should_get_show
420
+ ----------------------------------------
421
+ Processing by HomeController#show as HTML
422
+ Rendered home/show.html.erb within layouts/application (0.1ms)
423
+ Completed 200 OK in 1ms (Views: 0.7ms)
424
+ -------------------------------------------------
425
+ HomeControllerTest: test_page_renders_breadcrumbs
426
+ -------------------------------------------------
427
+ Processing by HomeController#show as HTML
428
+ Rendered home/show.html.erb within layouts/application (10.3ms)
429
+ Completed 500 Internal Server Error in 16ms
430
+ ----------------------------------------
431
+ HomeControllerTest: test_should_get_show
432
+ ----------------------------------------
433
+ Processing by HomeController#show as HTML
434
+ Rendered home/show.html.erb within layouts/application (7.7ms)
435
+ Completed 500 Internal Server Error in 8ms
436
+ -------------------------------------------------
437
+ HomeControllerTest: test_page_renders_breadcrumbs
438
+ -------------------------------------------------
439
+ Processing by HomeController#show as HTML
440
+ Rendered home/show.html.erb within layouts/application (1.1ms)
441
+ Completed 200 OK in 8ms (Views: 8.0ms)
442
+ ----------------------------------------
443
+ HomeControllerTest: test_should_get_show
444
+ ----------------------------------------
445
+ Processing by HomeController#show as HTML
446
+ Rendered home/show.html.erb within layouts/application (0.2ms)
447
+ Completed 200 OK in 1ms (Views: 0.6ms)
448
+ -------------------------------------------------
449
+ HomeControllerTest: test_page_renders_breadcrumbs
450
+ -------------------------------------------------
451
+ Processing by HomeController#show as HTML
452
+ Rendered home/show.html.erb within layouts/application (1.1ms)
453
+ Completed 200 OK in 8ms (Views: 7.6ms)
454
+ ----------------------------------------
455
+ HomeControllerTest: test_should_get_show
456
+ ----------------------------------------
457
+ Processing by HomeController#show as HTML
458
+ Rendered home/show.html.erb within layouts/application (0.2ms)
459
+ Completed 200 OK in 1ms (Views: 0.6ms)
460
+ -------------------------------------------
461
+ HomeControllerTest: test_page_renders_flags
462
+ -------------------------------------------
463
+ Processing by HomeController#show as HTML
464
+ Rendered home/show.html.erb within layouts/application (1.2ms)
465
+ Completed 200 OK in 8ms (Views: 7.6ms)
466
+ -------------------------------------------------
467
+ HomeControllerTest: test_page_renders_breadcrumbs
468
+ -------------------------------------------------
469
+ Processing by HomeController#show as HTML
470
+ Rendered home/show.html.erb within layouts/application (0.1ms)
471
+ Completed 200 OK in 1ms (Views: 0.7ms)
472
+ ----------------------------------------
473
+ HomeControllerTest: test_should_get_show
474
+ ----------------------------------------
475
+ Processing by HomeController#show as HTML
476
+ Rendered home/show.html.erb within layouts/application (0.2ms)
477
+ Completed 200 OK in 1ms (Views: 0.7ms)
478
+ ----------------------------------------
479
+ HomeControllerTest: test_should_get_show
480
+ ----------------------------------------
481
+ Processing by HomeController#show as HTML
482
+ Rendered home/show.html.erb within layouts/application (1.4ms)
483
+ Completed 200 OK in 8ms (Views: 7.9ms)
484
+ -------------------------------------------
485
+ HomeControllerTest: test_page_renders_flags
486
+ -------------------------------------------
487
+ Processing by HomeController#show as HTML
488
+ Rendered home/show.html.erb within layouts/application (0.2ms)
489
+ Completed 200 OK in 1ms (Views: 0.7ms)
490
+ -------------------------------------------------
491
+ HomeControllerTest: test_page_renders_breadcrumbs
492
+ -------------------------------------------------
493
+ Processing by HomeController#show as HTML
494
+ Rendered home/show.html.erb within layouts/application (0.2ms)
495
+ Completed 200 OK in 1ms (Views: 0.7ms)
496
+ -------------------------------------------------
497
+ HomeControllerTest: test_page_renders_breadcrumbs
498
+ -------------------------------------------------
499
+ Processing by HomeController#show as HTML
500
+ Rendered home/show.html.erb within layouts/application (1.3ms)
501
+ Completed 200 OK in 10ms (Views: 9.4ms)
502
+ -------------------------------------------
503
+ HomeControllerTest: test_page_renders_flags
504
+ -------------------------------------------
505
+ Processing by HomeController#show as HTML
506
+ Rendered home/show.html.erb within layouts/application (0.2ms)
507
+ Completed 200 OK in 1ms (Views: 0.7ms)
508
+ ----------------------------------------
509
+ HomeControllerTest: test_should_get_show
510
+ ----------------------------------------
511
+ Processing by HomeController#show as HTML
512
+ Rendered home/show.html.erb within layouts/application (0.2ms)
513
+ Completed 200 OK in 1ms (Views: 0.7ms)
514
+ -----------------------------------------------------------------------------------------------
515
+ Booties::ApplicationHelperTest: test_#flag_passes_miscellaneous_options_through_to_#content_tag
516
+ -----------------------------------------------------------------------------------------------
517
+ -------------------------------------------------------------------------------------
518
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
519
+ -------------------------------------------------------------------------------------
520
+ ---------------------------------------------------------------------------------------------
521
+ Booties::ApplicationHelperTest: test_#render_breadcrumbs_renders_ol_tag_with_breadcrumb_class
522
+ ---------------------------------------------------------------------------------------------
523
+ -------------------------------------------------------------------
524
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
525
+ -------------------------------------------------------------------
526
+ ------------------------------------------------------------------------------
527
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_label_classes
528
+ ------------------------------------------------------------------------------
529
+ ---------------------------------------------------------------------
530
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
531
+ ---------------------------------------------------------------------
532
+ -----------------------
533
+ BootiesTest: test_truth
534
+ -----------------------
535
+ -------------------------------------------------
536
+ HomeControllerTest: test_page_renders_breadcrumbs
537
+ -------------------------------------------------
538
+ Processing by HomeController#show as HTML
539
+ Rendered home/show.html.erb within layouts/application (0.6ms)
540
+ Completed 200 OK in 7ms (Views: 6.6ms)
541
+ -------------------------------------------
542
+ HomeControllerTest: test_page_renders_flags
543
+ -------------------------------------------
544
+ Processing by HomeController#show as HTML
545
+ Rendered home/show.html.erb within layouts/application (0.1ms)
546
+ Completed 200 OK in 1ms (Views: 0.6ms)
547
+ ----------------------------------------
548
+ HomeControllerTest: test_should_get_show
549
+ ----------------------------------------
550
+ Processing by HomeController#show as HTML
551
+ Rendered home/show.html.erb within layouts/application (0.1ms)
552
+ Completed 200 OK in 1ms (Views: 0.6ms)
553
+ ---------------------------------------------------------------------
554
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
555
+ ---------------------------------------------------------------------
556
+ -----------------------------------------------------------------------------------------------
557
+ Booties::ApplicationHelperTest: test_#flag_passes_miscellaneous_options_through_to_#content_tag
558
+ -----------------------------------------------------------------------------------------------
559
+ ---------------------------------------------------------------------------------------------
560
+ Booties::ApplicationHelperTest: test_#render_breadcrumbs_renders_ol_tag_with_breadcrumb_class
561
+ ---------------------------------------------------------------------------------------------
562
+ -------------------------------------------------------------------------------------
563
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
564
+ -------------------------------------------------------------------------------------
565
+ ------------------------------------------------------------------------------
566
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_label_classes
567
+ ------------------------------------------------------------------------------
568
+ -------------------------------------------------------------------
569
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
570
+ -------------------------------------------------------------------
571
+ ----------------------------------------
572
+ HomeControllerTest: test_should_get_show
573
+ ----------------------------------------
574
+ Processing by HomeController#show as HTML
575
+ Rendered home/show.html.erb within layouts/application (0.7ms)
576
+ Completed 200 OK in 7ms (Views: 6.9ms)
577
+ -------------------------------------------
578
+ HomeControllerTest: test_page_renders_flags
579
+ -------------------------------------------
580
+ Processing by HomeController#show as HTML
581
+ Rendered home/show.html.erb within layouts/application (0.1ms)
582
+ Completed 200 OK in 1ms (Views: 0.5ms)
583
+ -------------------------------------------------
584
+ HomeControllerTest: test_page_renders_breadcrumbs
585
+ -------------------------------------------------
586
+ Processing by HomeController#show as HTML
587
+ Rendered home/show.html.erb within layouts/application (0.2ms)
588
+ Completed 200 OK in 1ms (Views: 0.7ms)
589
+ -----------------------
590
+ BootiesTest: test_truth
591
+ -----------------------
592
+ -------------------------------------------------
593
+ HomeControllerTest: test_page_renders_breadcrumbs
594
+ -------------------------------------------------
595
+ Processing by HomeController#show as HTML
596
+ Rendered home/show.html.erb within layouts/application (1.0ms)
597
+ Completed 200 OK in 6ms (Views: 6.3ms)
598
+ -------------------------------------------
599
+ HomeControllerTest: test_page_renders_flags
600
+ -------------------------------------------
601
+ Processing by HomeController#show as HTML
602
+ Rendered home/show.html.erb within layouts/application (0.2ms)
603
+ Completed 200 OK in 1ms (Views: 0.6ms)
604
+ ----------------------------------------
605
+ HomeControllerTest: test_should_get_show
606
+ ----------------------------------------
607
+ Processing by HomeController#show as HTML
608
+ Rendered home/show.html.erb within layouts/application (0.2ms)
609
+ Completed 200 OK in 1ms (Views: 0.6ms)
610
+ -----------------------
611
+ BootiesTest: test_truth
612
+ -----------------------
613
+ -------------------------------------------------------------------
614
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
615
+ -------------------------------------------------------------------
616
+ ---------------------------------------------------------------------
617
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
618
+ ---------------------------------------------------------------------
619
+ -----------------------------------------------------------------------------------------------
620
+ Booties::ApplicationHelperTest: test_#flag_passes_miscellaneous_options_through_to_#content_tag
621
+ -----------------------------------------------------------------------------------------------
622
+ ---------------------------------------------------------------------------------------------
623
+ Booties::ApplicationHelperTest: test_#render_breadcrumbs_renders_ol_tag_with_breadcrumb_class
624
+ ---------------------------------------------------------------------------------------------
625
+ ------------------------------------------------------------------------------
626
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_label_classes
627
+ ------------------------------------------------------------------------------
628
+ -------------------------------------------------------------------------------------
629
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
630
+ -------------------------------------------------------------------------------------
631
+ -------------------------------------------
632
+ HomeControllerTest: test_page_renders_flags
633
+ -------------------------------------------
634
+ Processing by HomeController#show as HTML
635
+ Rendered home/show.html.erb within layouts/application (1.2ms)
636
+ Completed 200 OK in 7ms (Views: 7.4ms)
637
+ -------------------------------------------------
638
+ HomeControllerTest: test_page_renders_breadcrumbs
639
+ -------------------------------------------------
640
+ Processing by HomeController#show as HTML
641
+ Rendered home/show.html.erb within layouts/application (0.2ms)
642
+ Completed 200 OK in 1ms (Views: 0.6ms)
643
+ ----------------------------------------
644
+ HomeControllerTest: test_should_get_show
645
+ ----------------------------------------
646
+ Processing by HomeController#show as HTML
647
+ Rendered home/show.html.erb within layouts/application (0.1ms)
648
+ Completed 200 OK in 1ms (Views: 0.5ms)
649
+ ---------------------------------------------------------------------------------------------
650
+ Booties::ApplicationHelperTest: test_#render_breadcrumbs_renders_ol_tag_with_breadcrumb_class
651
+ ---------------------------------------------------------------------------------------------
652
+ -----------------------------------------------------------------------------------------------
653
+ Booties::ApplicationHelperTest: test_#flag_passes_miscellaneous_options_through_to_#content_tag
654
+ -----------------------------------------------------------------------------------------------
655
+ -------------------------------------------------------------------
656
+ Booties::ApplicationHelperTest: test_#flag_accepts_a_custom_context
657
+ -------------------------------------------------------------------
658
+ -------------------------------------------------------------------------------------
659
+ Booties::ApplicationHelperTest: test_#flag_merges_optional_classes_with_label_classes
660
+ -------------------------------------------------------------------------------------
661
+ ---------------------------------------------------------------------
662
+ Booties::ApplicationHelperTest: test_#flag_accepts_content_as_a_block
663
+ ---------------------------------------------------------------------
664
+ ------------------------------------------------------------------------------
665
+ Booties::ApplicationHelperTest: test_#flag_renders_span_tag_with_label_classes
666
+ ------------------------------------------------------------------------------
667
+ -----------------------
668
+ BootiesTest: test_truth
669
+ -----------------------