buoys 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d580b9e0f703c5a420c2c5e5ae42ef85df820a14
4
- data.tar.gz: e3dab0c1686a54587cb32b3305bb46c5b84d8e80
3
+ metadata.gz: 328e475c660faef4b8c35b25ffabefcd2097dbb5
4
+ data.tar.gz: f7aa9ab50d8ead9ffcb2127047c70806438d078e
5
5
  SHA512:
6
- metadata.gz: b9a93ab81d51ada4bf1fe6fcaab14028ca147bf849e1d4f2c07c6470d2e05e1f5ed881812ffeee2dc6f15343c89812b14ca9b25de0af4876dda605401e38abfb
7
- data.tar.gz: fe1f9a8aea9f274505df6d2147aea91211d36d96f5929d6b26b0db1e987b53870ddb6c66381eb2a9812b0e83d5a8a81d6cca1dae4d424ba9add2d1f37b997a3a
6
+ metadata.gz: 3617a33b4bc75b7c779ccfa00af1eefd394a9293aa651c32b11576c9a008ec312325f30609b1df83d90152440490fc801d15082d9ddd892fd6ea24cf00140e3d
7
+ data.tar.gz: 31c46adae6c5d0eb145f383f61cdbe69c4866c5e7e61d32a12d0e2a7bb2ae1084a330b15699ce90e0c1e45f95711d94948d2691004bb85877fbbb89d291317c8
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![Build Status](https://travis-ci.org/muryoimpl/buoys.svg?branch=master)](https://travis-ci.org/muryoimpl/buoys)
2
+
1
3
  # Buoys
2
4
 
3
5
  Buoys is a Ruby on Rails breadcrumb plugin like [gretel](https://github.com/lassebunk/gretel).
@@ -94,7 +96,7 @@ Then, You can build and change breadcrumb `app/views/breadcrumbs/_buoys.html.er
94
96
  <% end %>
95
97
  </ul>
96
98
  <% end %>
97
- ```
99
+ ```
98
100
 
99
101
  ## Options
100
102
 
@@ -103,4 +105,15 @@ Then, You can build and change breadcrumb `app/views/breadcrumbs/_buoys.html.er
103
105
  | :link_current | whether current buoy(breadcrumb) should be linked to | false |
104
106
  | :current_class | CSS class for current link. if you set `nil`, it is not set CSS class | 'active' |
105
107
 
108
+
109
+ You can override default configuration like below.
110
+
111
+ ```ruby
112
+ # config/initializers/buoys.rb
113
+
114
+ Buoys.configure do |config|
115
+ config.current_class = 'current'
116
+ end
117
+ ```
118
+
106
119
  Copyright (c) 2016 muryoimpl Released under the MIT license
@@ -0,0 +1,9 @@
1
+ module Buoys
2
+ class Railtie < ::Rails::Railtie
3
+ initializer 'buoys' do |_app|
4
+ ActiveSupport.on_load(:action_view) do
5
+ ActionView::Base.send :include, Buoys::Helper
6
+ end
7
+ end
8
+ end
9
+ end
@@ -1,14 +1,17 @@
1
1
  module Buoys
2
2
  class Renderer
3
3
  def initialize(context, key, *args)
4
- @context, @key, @args = context, key, *args
5
- Buoys::Loader.load_buoys_files if Buoys::Loader.buoys.keys.empty?
4
+ @context, @key, @args = context, key, args
5
+
6
+ if Rails.env.development? || Buoys::Loader.buoys.keys.empty?
7
+ Buoys::Loader.load_buoys_files
8
+ end
6
9
  end
7
10
 
8
11
  def render
9
12
  return [] unless @key
10
13
 
11
- buoy = Buoys::Buoy.new(@context, @key, @args)
14
+ buoy = Buoys::Buoy.new(@context, @key, *@args)
12
15
  build_links(buoy)
13
16
  end
14
17
 
data/lib/buoys/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Buoys
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
data/lib/buoys.rb CHANGED
@@ -19,4 +19,5 @@ module Buoys
19
19
  end
20
20
  end
21
21
  end
22
- ActionView::Base.send :include, Buoys::Helper
22
+
23
+ require 'buoys/railtie'
@@ -26,6 +26,13 @@ class BuoysHelerTest < ActionView::TestCase
26
26
  assert_dom_equal %{<ul><li><a class="hover" href="https://example.com/help"><span>help</span></a><span>&gt;</span></li><li><a class="active" href=""><span>usage</span></a></li></ul>}, html
27
27
  end
28
28
 
29
+ test '.buoy (receive multiple arguments)' do
30
+ breadcrumb :edit_book_author, 1, 2
31
+ html = render('breadcrumbs/buoys').gsub(/[[:space:]]{2,}|\n/, '')
32
+
33
+ assert_dom_equal %{<ul><li><a class="hover" href="http://example.com/books"><span>Books</span></a><span>&gt;</span></li><li><a class="active" href="http://example.com/books/1/authors/2"><span>edit-1-2</span></a></li></ul>}, html
34
+ end
35
+
29
36
  test ".buoy (has configuration options in link's arguments)" do
30
37
  breadcrumb :show_books, 1
31
38
  html = render('breadcrumbs/buoys').gsub(/[[:space:]]{2,}|\n/, '')
@@ -10,3 +10,8 @@ buoy :show_books do |number|
10
10
  parent :books
11
11
  link "show-#{number}", "http://example.com/books/#{number}", link_current: true
12
12
  end
13
+
14
+ buoy :edit_book_author do |book_id, author_id|
15
+ parent :books
16
+ link "edit-#{book_id}-#{author_id}", "http://example.com/books/#{book_id}/authors/#{author_id}", link_current: true
17
+ end
Binary file
metadata CHANGED
@@ -1,55 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: buoys
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - muryoimpl
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-10 00:00:00.000000000 Z
11
+ date: 2016-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - '>='
18
18
  - !ruby/object:Gem::Version
19
19
  version: 4.1.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - '>='
25
25
  - !ruby/object:Gem::Version
26
26
  version: 4.1.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: sqlite3
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - '>='
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: pry-rails
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ">="
45
+ - - '>='
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ">="
52
+ - - '>='
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  description: A Ruby on Rails breadcrumbs plugin.
@@ -68,6 +68,7 @@ files:
68
68
  - lib/buoys/helper.rb
69
69
  - lib/buoys/link.rb
70
70
  - lib/buoys/loader.rb
71
+ - lib/buoys/railtie.rb
71
72
  - lib/buoys/renderer.rb
72
73
  - lib/buoys/version.rb
73
74
  - lib/generators/buoys/install_generator.rb
@@ -114,7 +115,6 @@ files:
114
115
  - test/dummy/config/secrets.yml
115
116
  - test/dummy/db/schema.rb
116
117
  - test/dummy/db/test.sqlite3
117
- - test/dummy/log/test.log
118
118
  - test/dummy/public/404.html
119
119
  - test/dummy/public/422.html
120
120
  - test/dummy/public/500.html
@@ -130,63 +130,62 @@ require_paths:
130
130
  - lib
131
131
  required_ruby_version: !ruby/object:Gem::Requirement
132
132
  requirements:
133
- - - ">="
133
+ - - '>='
134
134
  - !ruby/object:Gem::Version
135
135
  version: '0'
136
136
  required_rubygems_version: !ruby/object:Gem::Requirement
137
137
  requirements:
138
- - - ">="
138
+ - - '>='
139
139
  - !ruby/object:Gem::Version
140
140
  version: '0'
141
141
  requirements: []
142
142
  rubyforge_project:
143
- rubygems_version: 2.5.1
143
+ rubygems_version: 2.4.5
144
144
  signing_key:
145
145
  specification_version: 4
146
146
  summary: A Ruby on Rails breadcrumbs plugin.
147
147
  test_files:
148
148
  - test/buoys_buoy_test.rb
149
- - test/test_helper.rb
150
149
  - test/buoys_helper_test.rb
151
- - test/buoys_test.rb
152
150
  - test/buoys_loader_test.rb
153
- - test/dummy/Rakefile
151
+ - test/buoys_test.rb
154
152
  - test/dummy/app/assets/javascripts/application.js
155
153
  - test/dummy/app/assets/stylesheets/application.css
156
154
  - test/dummy/app/controllers/application_controller.rb
157
- - test/dummy/app/views/layouts/application.html.erb
158
- - test/dummy/app/views/breadcrumbs/_buoys.erb
159
155
  - test/dummy/app/helpers/application_helper.rb
160
- - test/dummy/db/test.sqlite3
161
- - test/dummy/db/schema.rb
162
- - test/dummy/public/422.html
163
- - test/dummy/public/favicon.ico
164
- - test/dummy/public/500.html
165
- - test/dummy/public/404.html
166
- - test/dummy/log/test.log
156
+ - test/dummy/app/views/breadcrumbs/_buoys.erb
157
+ - test/dummy/app/views/layouts/application.html.erb
158
+ - test/dummy/bin/bundle
159
+ - test/dummy/bin/rails
160
+ - test/dummy/bin/rake
161
+ - test/dummy/bin/setup
162
+ - test/dummy/config/application.rb
163
+ - test/dummy/config/boot.rb
164
+ - test/dummy/config/buoys/breadcrumb.rb
165
+ - test/dummy/config/buoys/buoys.rb
166
+ - test/dummy/config/database.yml
167
167
  - test/dummy/config/environment.rb
168
- - test/dummy/config/locales/en.yml
169
168
  - test/dummy/config/environments/development.rb
170
169
  - test/dummy/config/environments/production.rb
171
170
  - test/dummy/config/environments/test.rb
172
- - test/dummy/config/secrets.yml
173
- - test/dummy/config/buoys/buoys.rb
174
- - test/dummy/config/buoys/breadcrumb.rb
171
+ - test/dummy/config/initializers/assets.rb
172
+ - test/dummy/config/initializers/backtrace_silencers.rb
175
173
  - test/dummy/config/initializers/cookies_serializer.rb
176
174
  - test/dummy/config/initializers/filter_parameter_logging.rb
177
175
  - test/dummy/config/initializers/inflections.rb
178
- - test/dummy/config/initializers/backtrace_silencers.rb
179
176
  - test/dummy/config/initializers/mime_types.rb
180
- - test/dummy/config/initializers/assets.rb
181
177
  - test/dummy/config/initializers/session_store.rb
182
178
  - test/dummy/config/initializers/wrap_parameters.rb
183
- - test/dummy/config/application.rb
184
- - test/dummy/config/boot.rb
179
+ - test/dummy/config/locales/en.yml
185
180
  - test/dummy/config/routes.rb
186
- - test/dummy/config/database.yml
187
- - test/dummy/README.rdoc
188
- - test/dummy/bin/rails
189
- - test/dummy/bin/bundle
190
- - test/dummy/bin/rake
191
- - test/dummy/bin/setup
181
+ - test/dummy/config/secrets.yml
192
182
  - test/dummy/config.ru
183
+ - test/dummy/db/schema.rb
184
+ - test/dummy/db/test.sqlite3
185
+ - test/dummy/public/404.html
186
+ - test/dummy/public/422.html
187
+ - test/dummy/public/500.html
188
+ - test/dummy/public/favicon.ico
189
+ - test/dummy/Rakefile
190
+ - test/dummy/README.rdoc
191
+ - test/test_helper.rb
@@ -1,719 +0,0 @@
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