buoys 0.1.0

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 (63) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +106 -0
  4. data/Rakefile +34 -0
  5. data/lib/buoys.rb +22 -0
  6. data/lib/buoys/buoy.rb +44 -0
  7. data/lib/buoys/config.rb +9 -0
  8. data/lib/buoys/helper.rb +31 -0
  9. data/lib/buoys/link.rb +51 -0
  10. data/lib/buoys/loader.rb +35 -0
  11. data/lib/buoys/renderer.rb +36 -0
  12. data/lib/buoys/version.rb +3 -0
  13. data/lib/generators/buoys/install_generator.rb +13 -0
  14. data/lib/generators/buoys/templates/_buoys.html.erb +14 -0
  15. data/lib/generators/buoys/templates/breadcrumbs.rb +38 -0
  16. data/lib/generators/buoys/templates/buoys.en.yml +4 -0
  17. data/lib/tasks/buoy_tasks.rake +4 -0
  18. data/test/buoys_buoy_test.rb +30 -0
  19. data/test/buoys_helper_test.rb +42 -0
  20. data/test/buoys_loader_test.rb +22 -0
  21. data/test/buoys_test.rb +7 -0
  22. data/test/dummy/README.rdoc +28 -0
  23. data/test/dummy/Rakefile +6 -0
  24. data/test/dummy/app/assets/javascripts/application.js +13 -0
  25. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  26. data/test/dummy/app/controllers/application_controller.rb +5 -0
  27. data/test/dummy/app/helpers/application_helper.rb +2 -0
  28. data/test/dummy/app/views/breadcrumbs/_buoys.erb +21 -0
  29. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  30. data/test/dummy/bin/bundle +3 -0
  31. data/test/dummy/bin/rails +4 -0
  32. data/test/dummy/bin/rake +4 -0
  33. data/test/dummy/bin/setup +29 -0
  34. data/test/dummy/config.ru +4 -0
  35. data/test/dummy/config/application.rb +26 -0
  36. data/test/dummy/config/boot.rb +5 -0
  37. data/test/dummy/config/buoys/breadcrumb.rb +13 -0
  38. data/test/dummy/config/buoys/buoys.rb +12 -0
  39. data/test/dummy/config/database.yml +25 -0
  40. data/test/dummy/config/environment.rb +5 -0
  41. data/test/dummy/config/environments/development.rb +41 -0
  42. data/test/dummy/config/environments/production.rb +79 -0
  43. data/test/dummy/config/environments/test.rb +42 -0
  44. data/test/dummy/config/initializers/assets.rb +11 -0
  45. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  46. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  47. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  48. data/test/dummy/config/initializers/inflections.rb +16 -0
  49. data/test/dummy/config/initializers/mime_types.rb +4 -0
  50. data/test/dummy/config/initializers/session_store.rb +3 -0
  51. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  52. data/test/dummy/config/locales/en.yml +27 -0
  53. data/test/dummy/config/routes.rb +4 -0
  54. data/test/dummy/config/secrets.yml +22 -0
  55. data/test/dummy/db/schema.rb +16 -0
  56. data/test/dummy/db/test.sqlite3 +0 -0
  57. data/test/dummy/log/test.log +719 -0
  58. data/test/dummy/public/404.html +67 -0
  59. data/test/dummy/public/422.html +67 -0
  60. data/test/dummy/public/500.html +66 -0
  61. data/test/dummy/public/favicon.ico +0 -0
  62. data/test/test_helper.rb +20 -0
  63. metadata +192 -0
@@ -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,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] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,27 @@
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"
24
+
25
+ buoys:
26
+ breadcrumbs:
27
+ account: 'Account'
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+ get 'about' => 'dummy/dummy', as: :about
3
+ get 'about/history' => 'dummy/dummy', as: :history
4
+ 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: 0252cf0b92fd00d736f83a8d84ad14f1845b001c949727812c5e6ca41cfda624ae3db091cf456c6fa518bdf74c24598796d670bc627b975af9c29a80b1046d93
15
+
16
+ test:
17
+ secret_key_base: c2dfcdb8cdc863773e2edf8797ac1350ad796850997c36dd4b7d7bd695ad40a0394e78563cff9a4250f372a1b64679b50c86596f9844c0ee666b0a36dca4d662
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"] %>
@@ -0,0 +1,16 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 0) do
15
+
16
+ end
@@ -0,0 +1,719 @@
1
+  (11.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (5.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+  (0.1ms) SELECT version FROM "schema_migrations"
5
+  (4.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
6
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7
+  (0.1ms) begin transaction
8
+ -----------------------------------------
9
+ BuoysHelerTest: test_.buoy_(only_current)
10
+ -----------------------------------------
11
+ Rendered breadcrumbs/_buoys.erb (4.0ms)
12
+  (0.1ms) rollback transaction
13
+  (0.1ms) begin transaction
14
+ ------------------------------------------------------------
15
+ BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
16
+ ------------------------------------------------------------
17
+ Rendered breadcrumbs/_buoys.erb (0.3ms)
18
+  (0.0ms) rollback transaction
19
+  (0.0ms) begin transaction
20
+ --------------------------------------------------------------------------
21
+ BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
22
+ --------------------------------------------------------------------------
23
+ Rendered breadcrumbs/_buoys.erb (0.3ms)
24
+  (0.0ms) rollback transaction
25
+  (0.0ms) begin transaction
26
+ ---------------------------------------------
27
+ BuoysHelerTest: test_.buoy_(not_only_current)
28
+ ---------------------------------------------
29
+ Rendered breadcrumbs/_buoys.erb (0.4ms)
30
+  (0.0ms) rollback transaction
31
+  (0.0ms) begin transaction
32
+ ----------------------------------------------------------------------------------
33
+ BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
34
+ ----------------------------------------------------------------------------------
35
+  (0.0ms) rollback transaction
36
+  (0.0ms) begin transaction
37
+ ------------------------------------------------
38
+ BuoysBuoyTest: test_can_use_:symbol_as_link_name
39
+ ------------------------------------------------
40
+  (0.0ms) rollback transaction
41
+  (0.0ms) begin transaction
42
+ --------------------------------
43
+ BuoysTest: test_.buoy_file_paths
44
+ --------------------------------
45
+  (0.0ms) rollback transaction
46
+  (0.0ms) begin transaction
47
+ ----------------------------
48
+ BuoysLoaderTest: test_.buoys
49
+ ----------------------------
50
+  (0.0ms) rollback transaction
51
+  (0.0ms) begin transaction
52
+ ---------------------------------
53
+ BuoysLoaderTest: test_.buoy_files
54
+ ---------------------------------
55
+  (0.1ms) rollback transaction
56
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
57
+  (4.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
58
+  (0.1ms) select sqlite_version(*)
59
+  (4.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
60
+  (0.1ms) SELECT version FROM "schema_migrations"
61
+  (4.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
62
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
63
+  (0.1ms) begin transaction
64
+ ----------------------------
65
+ BuoysLoaderTest: test_.buoys
66
+ ----------------------------
67
+  (0.0ms) rollback transaction
68
+  (0.0ms) begin transaction
69
+ ---------------------------------
70
+ BuoysLoaderTest: test_.buoy_files
71
+ ---------------------------------
72
+  (0.0ms) rollback transaction
73
+  (0.0ms) begin transaction
74
+ ----------------------------------------------------------------------------------
75
+ BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
76
+ ----------------------------------------------------------------------------------
77
+  (0.1ms) rollback transaction
78
+  (0.0ms) begin transaction
79
+ ------------------------------------------------
80
+ BuoysBuoyTest: test_can_use_:symbol_as_link_name
81
+ ------------------------------------------------
82
+  (0.1ms) rollback transaction
83
+  (0.1ms) begin transaction
84
+ ------------------------------------------------------------
85
+ BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
86
+ ------------------------------------------------------------
87
+ Rendered breadcrumbs/_buoys.erb (415.8ms)
88
+  (0.1ms) rollback transaction
89
+  (0.0ms) begin transaction
90
+ ---------------------------------------------
91
+ BuoysHelerTest: test_.buoy_(not_only_current)
92
+ ---------------------------------------------
93
+ Rendered breadcrumbs/_buoys.erb (399.7ms)
94
+  (0.1ms) rollback transaction
95
+  (0.0ms) begin transaction
96
+ --------------------------------------------------------------------------
97
+ BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
98
+ --------------------------------------------------------------------------
99
+ Rendered breadcrumbs/_buoys.erb (481.5ms)
100
+  (0.1ms) rollback transaction
101
+  (0.0ms) begin transaction
102
+ -----------------------------------------
103
+ BuoysHelerTest: test_.buoy_(only_current)
104
+ -----------------------------------------
105
+ Rendered breadcrumbs/_buoys.erb (180.2ms)
106
+  (0.1ms) rollback transaction
107
+  (0.1ms) begin transaction
108
+ --------------------------------
109
+ BuoysTest: test_.buoy_file_paths
110
+ --------------------------------
111
+  (0.0ms) rollback transaction
112
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
113
+  (4.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
114
+  (0.1ms) select sqlite_version(*)
115
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
116
+  (0.1ms) SELECT version FROM "schema_migrations"
117
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
118
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
119
+  (0.1ms) begin transaction
120
+ ---------------------------------
121
+ BuoysLoaderTest: test_.buoy_files
122
+ ---------------------------------
123
+  (0.0ms) rollback transaction
124
+  (0.0ms) begin transaction
125
+ ----------------------------
126
+ BuoysLoaderTest: test_.buoys
127
+ ----------------------------
128
+  (0.0ms) rollback transaction
129
+  (0.0ms) begin transaction
130
+ ----------------------------------------------------------------------------------
131
+ BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
132
+ ----------------------------------------------------------------------------------
133
+  (0.1ms) rollback transaction
134
+  (0.0ms) begin transaction
135
+ ------------------------------------------------
136
+ BuoysBuoyTest: test_can_use_:symbol_as_link_name
137
+ ------------------------------------------------
138
+  (0.0ms) rollback transaction
139
+  (0.0ms) begin transaction
140
+ --------------------------------
141
+ BuoysTest: test_.buoy_file_paths
142
+ --------------------------------
143
+  (0.0ms) rollback transaction
144
+  (0.0ms) begin transaction
145
+ --------------------------------------------------------------------------
146
+ BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
147
+ --------------------------------------------------------------------------
148
+ Rendered breadcrumbs/_buoys.erb (1.2ms)
149
+  (0.1ms) rollback transaction
150
+  (0.0ms) begin transaction
151
+ ------------------------------------------------------------
152
+ BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
153
+ ------------------------------------------------------------
154
+ Rendered breadcrumbs/_buoys.erb (0.3ms)
155
+  (0.0ms) rollback transaction
156
+  (0.1ms) begin transaction
157
+ ---------------------------------------------
158
+ BuoysHelerTest: test_.buoy_(not_only_current)
159
+ ---------------------------------------------
160
+ Rendered breadcrumbs/_buoys.erb (0.4ms)
161
+  (0.0ms) rollback transaction
162
+  (0.0ms) begin transaction
163
+ -----------------------------------------
164
+ BuoysHelerTest: test_.buoy_(only_current)
165
+ -----------------------------------------
166
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
167
+  (0.0ms) rollback transaction
168
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
169
+  (5.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
170
+  (0.1ms) select sqlite_version(*)
171
+  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
172
+  (0.1ms) SELECT version FROM "schema_migrations"
173
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
174
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
175
+  (0.3ms) begin transaction
176
+ ------------------------------------------------
177
+ BuoysBuoyTest: test_can_use_:symbol_as_link_name
178
+ ------------------------------------------------
179
+  (0.1ms) rollback transaction
180
+  (0.1ms) begin transaction
181
+ ----------------------------------------------------------------------------------
182
+ BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
183
+ ----------------------------------------------------------------------------------
184
+  (0.0ms) rollback transaction
185
+  (0.0ms) begin transaction
186
+ --------------------------------------------------------------------------
187
+ BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
188
+ --------------------------------------------------------------------------
189
+ Rendered breadcrumbs/_buoys.erb (1.4ms)
190
+  (0.1ms) rollback transaction
191
+  (0.0ms) begin transaction
192
+ -----------------------------------------
193
+ BuoysHelerTest: test_.buoy_(only_current)
194
+ -----------------------------------------
195
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
196
+  (0.0ms) rollback transaction
197
+  (0.0ms) begin transaction
198
+ ---------------------------------------------
199
+ BuoysHelerTest: test_.buoy_(not_only_current)
200
+ ---------------------------------------------
201
+ Rendered breadcrumbs/_buoys.erb (0.4ms)
202
+  (0.1ms) rollback transaction
203
+  (0.0ms) begin transaction
204
+ ------------------------------------------------------------
205
+ BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
206
+ ------------------------------------------------------------
207
+ Rendered breadcrumbs/_buoys.erb (0.3ms)
208
+  (0.0ms) rollback transaction
209
+  (0.1ms) begin transaction
210
+ ---------------------------------
211
+ BuoysLoaderTest: test_.buoy_files
212
+ ---------------------------------
213
+  (0.0ms) rollback transaction
214
+  (0.0ms) begin transaction
215
+ ----------------------------
216
+ BuoysLoaderTest: test_.buoys
217
+ ----------------------------
218
+  (0.0ms) rollback transaction
219
+  (0.1ms) begin transaction
220
+ --------------------------------
221
+ BuoysTest: test_.buoy_file_paths
222
+ --------------------------------
223
+  (0.0ms) rollback transaction
224
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
225
+  (4.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
226
+  (0.1ms) select sqlite_version(*)
227
+  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
228
+  (0.1ms) SELECT version FROM "schema_migrations"
229
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
230
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
231
+  (0.1ms) begin transaction
232
+ ------------------------------------------
233
+ BuoysHelerTest: test_.buoys_(no_given_key)
234
+ ------------------------------------------
235
+ Rendered breadcrumbs/_buoys.erb (1.0ms)
236
+  (0.1ms) rollback transaction
237
+  (0.1ms) begin transaction
238
+ -----------------------------------------
239
+ BuoysHelerTest: test_.buoy_(only_current)
240
+ -----------------------------------------
241
+ Rendered breadcrumbs/_buoys.erb (2.4ms)
242
+  (0.1ms) rollback transaction
243
+  (0.0ms) begin transaction
244
+ ------------------------------------------------------------
245
+ BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
246
+ ------------------------------------------------------------
247
+ Rendered breadcrumbs/_buoys.erb (0.3ms)
248
+  (0.0ms) rollback transaction
249
+  (0.0ms) begin transaction
250
+ --------------------------------------------------------------------------
251
+ BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
252
+ --------------------------------------------------------------------------
253
+ Rendered breadcrumbs/_buoys.erb (0.3ms)
254
+  (0.0ms) rollback transaction
255
+  (0.0ms) begin transaction
256
+ --------------------------------------------
257
+ BuoysHelerTest: test_.buoy_(not_only_active)
258
+ --------------------------------------------
259
+ Rendered breadcrumbs/_buoys.erb (0.4ms)
260
+  (0.0ms) rollback transaction
261
+  (0.1ms) begin transaction
262
+ ---------------------------------
263
+ BuoysLoaderTest: test_.buoy_files
264
+ ---------------------------------
265
+  (0.0ms) rollback transaction
266
+  (0.0ms) begin transaction
267
+ ----------------------------
268
+ BuoysLoaderTest: test_.buoys
269
+ ----------------------------
270
+  (0.0ms) rollback transaction
271
+  (0.0ms) begin transaction
272
+ ----------------------------------------------------------------------------------
273
+ BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
274
+ ----------------------------------------------------------------------------------
275
+  (0.0ms) rollback transaction
276
+  (0.0ms) begin transaction
277
+ ------------------------------------------------
278
+ BuoysBuoyTest: test_can_use_:symbol_as_link_name
279
+ ------------------------------------------------
280
+  (0.0ms) rollback transaction
281
+  (0.1ms) begin transaction
282
+ --------------------------------
283
+ BuoysTest: test_.buoy_file_paths
284
+ --------------------------------
285
+  (0.0ms) rollback transaction
286
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
287
+  (4.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
288
+  (0.1ms) select sqlite_version(*)
289
+  (4.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
290
+  (0.1ms) SELECT version FROM "schema_migrations"
291
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
292
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
293
+  (0.1ms) begin transaction
294
+ -----------------------------------------
295
+ BuoysHelerTest: test_.buoy_(only_current)
296
+ -----------------------------------------
297
+ Rendered breadcrumbs/_buoys.erb (3.2ms)
298
+  (0.1ms) rollback transaction
299
+  (0.0ms) begin transaction
300
+ --------------------------------------------
301
+ BuoysHelerTest: test_.buoy_(not_only_active)
302
+ --------------------------------------------
303
+ Rendered breadcrumbs/_buoys.erb (0.5ms)
304
+  (0.0ms) rollback transaction
305
+  (0.0ms) begin transaction
306
+ ------------------------------------------------------------
307
+ BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
308
+ ------------------------------------------------------------
309
+ Rendered breadcrumbs/_buoys.erb (0.3ms)
310
+  (0.0ms) rollback transaction
311
+  (0.0ms) begin transaction
312
+ ------------------------------------------
313
+ BuoysHelerTest: test_.buoys_(no_given_key)
314
+ ------------------------------------------
315
+ Rendered breadcrumbs/_buoys.erb (0.0ms)
316
+  (0.0ms) rollback transaction
317
+  (0.0ms) begin transaction
318
+ --------------------------------------------------------------------------
319
+ BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
320
+ --------------------------------------------------------------------------
321
+ Rendered breadcrumbs/_buoys.erb (0.3ms)
322
+  (0.0ms) rollback transaction
323
+  (0.0ms) begin transaction
324
+ ---------------------------------
325
+ BuoysLoaderTest: test_.buoy_files
326
+ ---------------------------------
327
+  (0.0ms) rollback transaction
328
+  (0.0ms) begin transaction
329
+ ----------------------------
330
+ BuoysLoaderTest: test_.buoys
331
+ ----------------------------
332
+  (0.0ms) rollback transaction
333
+  (0.0ms) begin transaction
334
+ ----------------------------------------------------------------------------------
335
+ BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
336
+ ----------------------------------------------------------------------------------
337
+  (0.0ms) rollback transaction
338
+  (0.0ms) begin transaction
339
+ ------------------------------------------------
340
+ BuoysBuoyTest: test_can_use_:symbol_as_link_name
341
+ ------------------------------------------------
342
+  (0.0ms) rollback transaction
343
+  (0.0ms) begin transaction
344
+ --------------------------------
345
+ BuoysTest: test_.buoy_file_paths
346
+ --------------------------------
347
+  (0.0ms) rollback transaction
348
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
349
+  (5.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
350
+  (0.1ms) select sqlite_version(*)
351
+  (4.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
352
+  (0.1ms) SELECT version FROM "schema_migrations"
353
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
354
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
355
+  (0.1ms) begin transaction
356
+ ----------------------------------------------------------------------------------
357
+ BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
358
+ ----------------------------------------------------------------------------------
359
+  (0.1ms) rollback transaction
360
+  (0.0ms) begin transaction
361
+ ------------------------------------------------
362
+ BuoysBuoyTest: test_can_use_:symbol_as_link_name
363
+ ------------------------------------------------
364
+  (0.0ms) rollback transaction
365
+  (0.0ms) begin transaction
366
+ ------------------------------------------------------------
367
+ BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
368
+ ------------------------------------------------------------
369
+ Rendered breadcrumbs/_buoys.erb (1.3ms)
370
+  (0.1ms) rollback transaction
371
+  (0.0ms) begin transaction
372
+ ------------------------------------------
373
+ BuoysHelerTest: test_.buoys_(no_given_key)
374
+ ------------------------------------------
375
+ Rendered breadcrumbs/_buoys.erb (0.0ms)
376
+  (0.0ms) rollback transaction
377
+  (0.0ms) begin transaction
378
+ -----------------------------------------
379
+ BuoysHelerTest: test_.buoy_(only_current)
380
+ -----------------------------------------
381
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
382
+  (0.0ms) rollback transaction
383
+  (0.0ms) begin transaction
384
+ --------------------------------------------------------------------------
385
+ BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
386
+ --------------------------------------------------------------------------
387
+ Rendered breadcrumbs/_buoys.erb (0.3ms)
388
+  (0.0ms) rollback transaction
389
+  (0.0ms) begin transaction
390
+ --------------------------------------------
391
+ BuoysHelerTest: test_.buoy_(not_only_active)
392
+ --------------------------------------------
393
+ Rendered breadcrumbs/_buoys.erb (0.5ms)
394
+  (0.0ms) rollback transaction
395
+  (0.0ms) begin transaction
396
+ --------------------------------
397
+ BuoysTest: test_.buoy_file_paths
398
+ --------------------------------
399
+  (0.0ms) rollback transaction
400
+  (0.0ms) begin transaction
401
+ ----------------------------
402
+ BuoysLoaderTest: test_.buoys
403
+ ----------------------------
404
+  (0.0ms) rollback transaction
405
+  (0.0ms) begin transaction
406
+ ---------------------------------
407
+ BuoysLoaderTest: test_.buoy_files
408
+ ---------------------------------
409
+  (0.0ms) rollback transaction
410
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
411
+  (5.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
412
+  (0.1ms) select sqlite_version(*)
413
+  (4.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
414
+  (0.1ms) SELECT version FROM "schema_migrations"
415
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
416
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
417
+  (0.1ms) begin transaction
418
+ ---------------------------------
419
+ BuoysLoaderTest: test_.buoy_files
420
+ ---------------------------------
421
+  (0.0ms) rollback transaction
422
+  (0.0ms) begin transaction
423
+ ----------------------------
424
+ BuoysLoaderTest: test_.buoys
425
+ ----------------------------
426
+  (0.0ms) rollback transaction
427
+  (0.0ms) begin transaction
428
+ ----------------------------------------------------------------------------------
429
+ BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
430
+ ----------------------------------------------------------------------------------
431
+  (0.0ms) rollback transaction
432
+  (0.0ms) begin transaction
433
+ ------------------------------------------------
434
+ BuoysBuoyTest: test_can_use_:symbol_as_link_name
435
+ ------------------------------------------------
436
+  (0.0ms) rollback transaction
437
+  (0.0ms) begin transaction
438
+ -----------------------------------------
439
+ BuoysHelerTest: test_.buoy_(only_current)
440
+ -----------------------------------------
441
+ Rendered breadcrumbs/_buoys.erb (1.2ms)
442
+  (0.1ms) rollback transaction
443
+  (0.0ms) begin transaction
444
+ --------------------------------------------------------------------------
445
+ BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
446
+ --------------------------------------------------------------------------
447
+ Rendered breadcrumbs/_buoys.erb (0.4ms)
448
+  (0.0ms) rollback transaction
449
+  (0.0ms) begin transaction
450
+ --------------------------------------------
451
+ BuoysHelerTest: test_.buoy_(not_only_active)
452
+ --------------------------------------------
453
+ Rendered breadcrumbs/_buoys.erb (0.5ms)
454
+  (0.0ms) rollback transaction
455
+  (0.0ms) begin transaction
456
+ ------------------------------------------
457
+ BuoysHelerTest: test_.buoys_(no_given_key)
458
+ ------------------------------------------
459
+ Rendered breadcrumbs/_buoys.erb (0.0ms)
460
+  (0.0ms) rollback transaction
461
+  (0.0ms) begin transaction
462
+ ------------------------------------------------------------
463
+ BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
464
+ ------------------------------------------------------------
465
+ Rendered breadcrumbs/_buoys.erb (0.3ms)
466
+  (0.0ms) rollback transaction
467
+  (0.0ms) begin transaction
468
+ --------------------------------
469
+ BuoysTest: test_.buoy_file_paths
470
+ --------------------------------
471
+  (0.0ms) rollback transaction
472
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
473
+  (4.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
474
+  (0.1ms) select sqlite_version(*)
475
+  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
476
+  (0.3ms) SELECT version FROM "schema_migrations"
477
+  (3.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
478
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
479
+  (0.1ms) begin transaction
480
+ ----------------------------------------------------------------------------------
481
+ BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
482
+ ----------------------------------------------------------------------------------
483
+  (0.1ms) rollback transaction
484
+  (0.1ms) begin transaction
485
+ ------------------------------------------------
486
+ BuoysBuoyTest: test_can_use_:symbol_as_link_name
487
+ ------------------------------------------------
488
+  (0.0ms) rollback transaction
489
+  (0.0ms) begin transaction
490
+ --------------------------------
491
+ BuoysTest: test_.buoy_file_paths
492
+ --------------------------------
493
+  (0.0ms) rollback transaction
494
+  (0.0ms) begin transaction
495
+ ------------------------------------------
496
+ BuoysHelerTest: test_.buoys_(no_given_key)
497
+ ------------------------------------------
498
+ Rendered breadcrumbs/_buoys.erb (1.0ms)
499
+  (0.1ms) rollback transaction
500
+  (0.0ms) begin transaction
501
+ --------------------------------------------
502
+ BuoysHelerTest: test_.buoy_(not_only_active)
503
+ --------------------------------------------
504
+ Rendered breadcrumbs/_buoys.erb (0.5ms)
505
+  (0.0ms) rollback transaction
506
+  (0.0ms) begin transaction
507
+ -----------------------------------------
508
+ BuoysHelerTest: test_.buoy_(only_current)
509
+ -----------------------------------------
510
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
511
+  (0.0ms) rollback transaction
512
+  (0.0ms) begin transaction
513
+ ------------------------------------------------------------
514
+ BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
515
+ ------------------------------------------------------------
516
+ Rendered breadcrumbs/_buoys.erb (0.3ms)
517
+  (0.0ms) rollback transaction
518
+  (0.0ms) begin transaction
519
+ --------------------------------------------------------------------------
520
+ BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
521
+ --------------------------------------------------------------------------
522
+ Rendered breadcrumbs/_buoys.erb (0.3ms)
523
+  (0.0ms) rollback transaction
524
+  (0.0ms) begin transaction
525
+ ----------------------------
526
+ BuoysLoaderTest: test_.buoys
527
+ ----------------------------
528
+  (0.0ms) rollback transaction
529
+  (0.1ms) begin transaction
530
+ ---------------------------------
531
+ BuoysLoaderTest: test_.buoy_files
532
+ ---------------------------------
533
+  (0.0ms) rollback transaction
534
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
535
+  (5.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
536
+  (0.1ms) select sqlite_version(*)
537
+  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
538
+  (0.1ms) SELECT version FROM "schema_migrations"
539
+  (4.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
540
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
541
+  (0.1ms) begin transaction
542
+ ----------------------------------------------------------------------------------
543
+ BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
544
+ ----------------------------------------------------------------------------------
545
+  (0.1ms) rollback transaction
546
+  (0.0ms) begin transaction
547
+ ------------------------------------------------
548
+ BuoysBuoyTest: test_can_use_:symbol_as_link_name
549
+ ------------------------------------------------
550
+  (0.0ms) rollback transaction
551
+  (0.1ms) begin transaction
552
+ ------------------------------------------------------------
553
+ BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
554
+ ------------------------------------------------------------
555
+ Rendered breadcrumbs/_buoys.erb (1.2ms)
556
+  (0.1ms) rollback transaction
557
+  (0.0ms) begin transaction
558
+ --------------------------------------------
559
+ BuoysHelerTest: test_.buoy_(not_only_active)
560
+ --------------------------------------------
561
+ Rendered breadcrumbs/_buoys.erb (0.5ms)
562
+  (0.0ms) rollback transaction
563
+  (0.0ms) begin transaction
564
+ --------------------------------------------------------------------------
565
+ BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
566
+ --------------------------------------------------------------------------
567
+ Rendered breadcrumbs/_buoys.erb (0.3ms)
568
+  (0.0ms) rollback transaction
569
+  (0.0ms) begin transaction
570
+ ------------------------------------------
571
+ BuoysHelerTest: test_.buoys_(no_given_key)
572
+ ------------------------------------------
573
+ Rendered breadcrumbs/_buoys.erb (0.1ms)
574
+  (0.0ms) rollback transaction
575
+  (0.0ms) begin transaction
576
+ -----------------------------------------
577
+ BuoysHelerTest: test_.buoy_(only_current)
578
+ -----------------------------------------
579
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
580
+  (0.1ms) rollback transaction
581
+  (0.0ms) begin transaction
582
+ ---------------------------------
583
+ BuoysLoaderTest: test_.buoy_files
584
+ ---------------------------------
585
+  (0.0ms) rollback transaction
586
+  (0.0ms) begin transaction
587
+ ----------------------------
588
+ BuoysLoaderTest: test_.buoys
589
+ ----------------------------
590
+  (0.0ms) rollback transaction
591
+  (0.0ms) begin transaction
592
+ --------------------------------
593
+ BuoysTest: test_.buoy_file_paths
594
+ --------------------------------
595
+  (0.0ms) rollback transaction
596
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
597
+  (7.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
598
+  (0.1ms) select sqlite_version(*)
599
+  (5.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
600
+  (0.1ms) SELECT version FROM "schema_migrations"
601
+  (4.2ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
602
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
603
+  (0.1ms) begin transaction
604
+ ---------------------------------
605
+ BuoysLoaderTest: test_.buoy_files
606
+ ---------------------------------
607
+  (0.0ms) rollback transaction
608
+  (0.0ms) begin transaction
609
+ ----------------------------
610
+ BuoysLoaderTest: test_.buoys
611
+ ----------------------------
612
+  (0.0ms) rollback transaction
613
+  (0.0ms) begin transaction
614
+ ----------------------------------------------------------------------------------
615
+ BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
616
+ ----------------------------------------------------------------------------------
617
+  (0.1ms) rollback transaction
618
+  (0.0ms) begin transaction
619
+ ------------------------------------------------
620
+ BuoysBuoyTest: test_can_use_:symbol_as_link_name
621
+ ------------------------------------------------
622
+  (0.1ms) rollback transaction
623
+  (0.0ms) begin transaction
624
+ --------------------------------
625
+ BuoysTest: test_.buoy_file_paths
626
+ --------------------------------
627
+  (0.0ms) rollback transaction
628
+  (0.0ms) begin transaction
629
+ ------------------------------------------------------------
630
+ BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
631
+ ------------------------------------------------------------
632
+ Rendered breadcrumbs/_buoys.erb (1.2ms)
633
+  (0.1ms) rollback transaction
634
+  (0.0ms) begin transaction
635
+ --------------------------------------------
636
+ BuoysHelerTest: test_.buoy_(not_only_active)
637
+ --------------------------------------------
638
+ Rendered breadcrumbs/_buoys.erb (0.5ms)
639
+  (0.0ms) rollback transaction
640
+  (0.0ms) begin transaction
641
+ -----------------------------------------
642
+ BuoysHelerTest: test_.buoy_(only_current)
643
+ -----------------------------------------
644
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
645
+  (0.0ms) rollback transaction
646
+  (0.0ms) begin transaction
647
+ ------------------------------------------
648
+ BuoysHelerTest: test_.buoys_(no_given_key)
649
+ ------------------------------------------
650
+ Rendered breadcrumbs/_buoys.erb (0.0ms)
651
+  (0.0ms) rollback transaction
652
+  (0.1ms) begin transaction
653
+ --------------------------------------------------------------------------
654
+ BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
655
+ --------------------------------------------------------------------------
656
+ Rendered breadcrumbs/_buoys.erb (0.3ms)
657
+  (0.0ms) rollback transaction
658
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
659
+  (4.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
660
+  (0.1ms) select sqlite_version(*)
661
+  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
662
+  (0.1ms) SELECT version FROM "schema_migrations"
663
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
664
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
665
+  (0.1ms) begin transaction
666
+ ---------------------------------
667
+ BuoysLoaderTest: test_.buoy_files
668
+ ---------------------------------
669
+  (0.1ms) rollback transaction
670
+  (0.0ms) begin transaction
671
+ ----------------------------
672
+ BuoysLoaderTest: test_.buoys
673
+ ----------------------------
674
+  (0.0ms) rollback transaction
675
+  (0.0ms) begin transaction
676
+ ----------------------------------------------------------------------------------
677
+ BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
678
+ ----------------------------------------------------------------------------------
679
+  (0.0ms) rollback transaction
680
+  (0.1ms) begin transaction
681
+ ------------------------------------------------
682
+ BuoysBuoyTest: test_can_use_:symbol_as_link_name
683
+ ------------------------------------------------
684
+  (0.0ms) rollback transaction
685
+  (0.0ms) begin transaction
686
+ --------------------------------------------------------------------------
687
+ BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
688
+ --------------------------------------------------------------------------
689
+ Rendered breadcrumbs/_buoys.erb (1.3ms)
690
+  (0.1ms) rollback transaction
691
+  (0.1ms) begin transaction
692
+ ------------------------------------------------------------
693
+ BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
694
+ ------------------------------------------------------------
695
+ Rendered breadcrumbs/_buoys.erb (0.3ms)
696
+  (0.1ms) rollback transaction
697
+  (0.0ms) begin transaction
698
+ --------------------------------------------
699
+ BuoysHelerTest: test_.buoy_(not_only_active)
700
+ --------------------------------------------
701
+ Rendered breadcrumbs/_buoys.erb (0.4ms)
702
+  (0.0ms) rollback transaction
703
+  (0.0ms) begin transaction
704
+ ------------------------------------------
705
+ BuoysHelerTest: test_.buoys_(no_given_key)
706
+ ------------------------------------------
707
+ Rendered breadcrumbs/_buoys.erb (0.0ms)
708
+  (0.0ms) rollback transaction
709
+  (0.0ms) begin transaction
710
+ -----------------------------------------
711
+ BuoysHelerTest: test_.buoy_(only_current)
712
+ -----------------------------------------
713
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
714
+  (0.0ms) rollback transaction
715
+  (0.0ms) begin transaction
716
+ --------------------------------
717
+ BuoysTest: test_.buoy_file_paths
718
+ --------------------------------
719
+  (0.0ms) rollback transaction