buoys 2.0.1 → 2.0.2

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 (66) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +2 -0
  3. data/lib/buoys/buoy.rb +2 -2
  4. data/lib/buoys/version.rb +1 -1
  5. data/test/buoys_buoy_test.rb +12 -0
  6. data/test/dummy/Rakefile +1 -1
  7. data/test/dummy/app/assets/config/manifest.js +3 -1
  8. data/test/dummy/app/assets/javascripts/application.js +3 -1
  9. data/test/dummy/app/assets/javascripts/cable.js +13 -0
  10. data/test/dummy/app/assets/stylesheets/application.css +3 -3
  11. data/test/dummy/app/channels/application_cable/channel.rb +4 -0
  12. data/test/dummy/app/channels/application_cable/connection.rb +4 -0
  13. data/test/dummy/app/controllers/application_controller.rb +0 -5
  14. data/test/dummy/app/helpers/application_helper.rb +0 -2
  15. data/test/dummy/app/jobs/application_job.rb +2 -0
  16. data/test/dummy/app/mailers/application_mailer.rb +4 -0
  17. data/test/dummy/app/models/application_record.rb +3 -0
  18. data/test/dummy/app/models/item.rb +1 -1
  19. data/test/dummy/app/models/user.rb +1 -1
  20. data/test/dummy/app/views/layouts/application.html.erb +10 -9
  21. data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
  22. data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
  23. data/test/dummy/bin/bundle +1 -1
  24. data/test/dummy/bin/rails +1 -1
  25. data/test/dummy/bin/setup +20 -13
  26. data/test/dummy/bin/update +31 -0
  27. data/test/dummy/bin/yarn +11 -0
  28. data/test/dummy/config/application.rb +9 -21
  29. data/test/dummy/config/boot.rb +2 -4
  30. data/test/dummy/config/cable.yml +10 -0
  31. data/test/dummy/config/database.yml +1 -1
  32. data/test/dummy/config/environment.rb +1 -3
  33. data/test/dummy/config/environments/development.rb +31 -13
  34. data/test/dummy/config/environments/production.rb +31 -18
  35. data/test/dummy/config/environments/test.rb +10 -13
  36. data/test/dummy/config/initializers/application_controller_renderer.rb +8 -0
  37. data/test/dummy/config/initializers/assets.rb +6 -5
  38. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -2
  39. data/test/dummy/config/initializers/content_security_policy.rb +25 -0
  40. data/test/dummy/config/initializers/cookies_serializer.rb +2 -2
  41. data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -2
  42. data/test/dummy/config/initializers/inflections.rb +0 -2
  43. data/test/dummy/config/initializers/mime_types.rb +0 -2
  44. data/test/dummy/config/initializers/wrap_parameters.rb +2 -4
  45. data/test/dummy/config/locales/en.yml +10 -0
  46. data/test/dummy/config/puma.rb +37 -0
  47. data/test/dummy/config/routes.rb +2 -2
  48. data/test/dummy/config/spring.rb +6 -0
  49. data/test/dummy/config/storage.yml +34 -0
  50. data/test/dummy/config.ru +2 -1
  51. data/test/dummy/db/development.sqlite3 +0 -0
  52. data/test/dummy/db/test.sqlite3 +0 -0
  53. data/test/dummy/log/development.log +105 -0
  54. data/test/dummy/log/test.log +396 -267
  55. data/test/dummy/package.json +5 -0
  56. data/test/dummy/public/404.html +6 -6
  57. data/test/dummy/public/422.html +6 -6
  58. data/test/dummy/public/500.html +6 -6
  59. data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
  60. data/test/dummy/public/apple-touch-icon.png +0 -0
  61. data/test/dummy/tmp/development_secret.txt +1 -0
  62. data/test/test_helper.rb +4 -5
  63. metadata +88 -49
  64. data/test/dummy/README.rdoc +0 -28
  65. data/test/dummy/config/initializers/session_store.rb +0 -5
  66. data/test/dummy/config/secrets.yml +0 -22
@@ -1,100 +1,105 @@
1
-  (10.7ms) CREATE TABLE "items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2
-  (5.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3
-  (6.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
4
-  (0.2ms) SELECT version FROM "schema_migrations"
5
-  (5.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20160602144324')
6
-  (0.1ms) select sqlite_version(*)
7
-  (5.1ms) INSERT INTO schema_migrations (version) VALUES ('20160602144150');
8
-
9
- 
10
-  (7.4ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
11
- ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
12
1
   (0.1ms) begin transaction
13
- SQL (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", 2016-11-16 16:25:53 UTC], ["updated_at", 2016-11-16 16:25:53 UTC]]
14
-  (4.5ms) commit transaction
15
- ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
2
+ -------------------------------------------
3
+ BuoysGeneratorTest: test_no_template_option
4
+ -------------------------------------------
5
+  (0.0ms) rollback transaction
6
+  (0.0ms) begin transaction
7
+ -----------------------------------------------
8
+ BuoysGeneratorTest: test_option_--template_haml
9
+ -----------------------------------------------
10
+  (0.0ms) rollback transaction
11
+  (0.0ms) begin transaction
12
+ -----------------------------------------------
13
+ BuoysGeneratorTest: test_option_--template_slim
14
+ -----------------------------------------------
15
+  (0.0ms) rollback transaction
16
+  (0.0ms) begin transaction
17
+ ----------------------------------------------------------------------------------
18
+ BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
19
+ ----------------------------------------------------------------------------------
20
+  (0.0ms) rollback transaction
21
+  (0.0ms) begin transaction
22
+ ------------------------------------------------
23
+ BuoysBuoyTest: test_can_use_:symbol_as_link_name
24
+ ------------------------------------------------
25
+  (0.0ms) rollback transaction
16
26
   (0.0ms) begin transaction
17
-  (0.0ms) commit transaction
18
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19
-  (0.1ms) begin transaction
20
27
  --------------------------------------------------------------------------
21
28
  BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
22
29
  --------------------------------------------------------------------------
23
- Rendered breadcrumbs/_buoys.erb (6.0ms)
24
-  (0.1ms) rollback transaction
30
+  (0.0ms) rollback transaction
31
+  (0.0ms) begin transaction
32
+ -----------------------------------------
33
+ BuoysHelerTest: test_.buoy_(only_current)
34
+ -----------------------------------------
35
+  (0.0ms) rollback transaction
36
+  (0.0ms) begin transaction
37
+ --------------------------------------------
38
+ BuoysHelerTest: test_.buoy_(not_only_active)
39
+ --------------------------------------------
40
+  (0.0ms) rollback transaction
25
41
   (0.0ms) begin transaction
26
42
  ---------------------------------------------------
27
43
  BuoysHelerTest: test_.buoy_(use_polymorphic_routes)
28
44
  ---------------------------------------------------
29
-  (0.0ms) SAVEPOINT active_record_1
30
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test user"], ["created_at", 2016-11-16 16:25:53 UTC], ["updated_at", 2016-11-16 16:25:53 UTC]]
31
-  (0.0ms) RELEASE SAVEPOINT active_record_1
32
-  (0.0ms) SAVEPOINT active_record_1
33
- SQL (0.1ms) INSERT INTO "items" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test item"], ["created_at", 2016-11-16 16:25:53 UTC], ["updated_at", 2016-11-16 16:25:53 UTC]]
34
-  (0.0ms) RELEASE SAVEPOINT active_record_1
35
- Rendered breadcrumbs/_buoys.erb (2.5ms)
36
-  (0.2ms) rollback transaction
45
+  (0.0ms) rollback transaction
46
+  (0.0ms) begin transaction
47
+ ------------------------------------------
48
+ BuoysHelerTest: test_.buoys_(no_given_key)
49
+ ------------------------------------------
50
+  (0.0ms) rollback transaction
37
51
   (0.0ms) begin transaction
38
52
  ------------------------------------------------------------
39
53
  BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
40
54
  ------------------------------------------------------------
41
- Rendered breadcrumbs/_buoys.erb (0.3ms)
42
-  (0.0ms) rollback transaction
43
-  (0.1ms) begin transaction
44
- --------------------------------------------
45
- BuoysHelerTest: test_.buoy_(not_only_active)
46
- --------------------------------------------
47
- Rendered breadcrumbs/_buoys.erb (0.4ms)
48
55
   (0.0ms) rollback transaction
49
56
   (0.0ms) begin transaction
50
57
  -------------------------------------------------------
51
58
  BuoysHelerTest: test_.buoy_(receive_multiple_arguments)
52
59
  -------------------------------------------------------
53
- Rendered breadcrumbs/_buoys.erb (0.4ms)
54
60
   (0.0ms) rollback transaction
55
61
   (0.0ms) begin transaction
56
- -----------------------------------------
57
- BuoysHelerTest: test_.buoy_(only_current)
58
- -----------------------------------------
59
- Rendered breadcrumbs/_buoys.erb (0.2ms)
62
+ --------------------------------
63
+ BuoysTest: test_.buoy_file_paths
64
+ --------------------------------
60
65
   (0.0ms) rollback transaction
61
-  (0.1ms) begin transaction
62
- ------------------------------------------
63
- BuoysHelerTest: test_.buoys_(no_given_key)
64
- ------------------------------------------
65
- Rendered breadcrumbs/_buoys.erb (0.1ms)
66
-  (0.1ms) rollback transaction
67
-  (0.1ms) begin transaction
66
+  (0.0ms) begin transaction
68
67
  ---------------------------------
69
68
  BuoysLoaderTest: test_.buoy_files
70
69
  ---------------------------------
71
-  (0.1ms) rollback transaction
72
-  (0.1ms) begin transaction
70
+  (0.0ms) rollback transaction
71
+  (0.0ms) begin transaction
73
72
  ----------------------------
74
73
  BuoysLoaderTest: test_.buoys
75
74
  ----------------------------
76
75
   (0.1ms) rollback transaction
77
-  (0.1ms) begin transaction
78
- ----------------------------------------------------------------------------------
79
- BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
80
- ----------------------------------------------------------------------------------
81
-  (0.0ms) rollback transaction
82
-  (0.1ms) begin transaction
83
- ------------------------------------------------
84
- BuoysBuoyTest: test_can_use_:symbol_as_link_name
85
- ------------------------------------------------
86
-  (0.0ms) rollback transaction
76
+  (0.0ms) DROP TABLE IF EXISTS "items"
77
+  (0.0ms) SELECT sqlite_version(*)
78
+  (2.5ms) CREATE TABLE "items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
79
+  (0.0ms) DROP TABLE IF EXISTS "users"
80
+  (25.8ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
81
+  (4.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
82
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
83
+  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES (20160602144324)
84
+  (3.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
85
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
86
+  (0.0ms) begin transaction
87
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2021-01-16 05:26:08.372207"], ["updated_at", "2021-01-16 05:26:08.372207"]]
88
+  (2.8ms) commit transaction
89
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
90
+  (0.0ms) begin transaction
91
+  (0.0ms) commit transaction
92
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
87
93
   (0.1ms) begin transaction
88
94
  --------------------------------
89
95
  BuoysTest: test_.buoy_file_paths
90
96
  --------------------------------
91
97
   (0.0ms) rollback transaction
92
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
93
-  (0.1ms) begin transaction
98
+  (0.0ms) begin transaction
94
99
  ----------------------------------------------------------------------------------
95
100
  BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
96
101
  ----------------------------------------------------------------------------------
97
-  (0.1ms) rollback transaction
102
+  (0.0ms) rollback transaction
98
103
   (0.0ms) begin transaction
99
104
  ------------------------------------------------
100
105
  BuoysBuoyTest: test_can_use_:symbol_as_link_name
@@ -111,16 +116,26 @@ BuoysLoaderTest: test_.buoys
111
116
  ----------------------------
112
117
   (0.0ms) rollback transaction
113
118
   (0.0ms) begin transaction
114
- --------------------------------
115
- BuoysTest: test_.buoy_file_paths
116
- --------------------------------
119
+ -----------------------------------------------
120
+ BuoysGeneratorTest: test_option_--template_slim
121
+ -----------------------------------------------
122
+  (0.0ms) rollback transaction
123
+  (0.0ms) begin transaction
124
+ -------------------------------------------
125
+ BuoysGeneratorTest: test_no_template_option
126
+ -------------------------------------------
127
+  (0.0ms) rollback transaction
128
+  (0.0ms) begin transaction
129
+ -----------------------------------------------
130
+ BuoysGeneratorTest: test_option_--template_haml
131
+ -----------------------------------------------
132
+  (0.0ms) rollback transaction
133
+  (0.0ms) begin transaction
134
+ -------------------------------------------------------
135
+ BuoysHelerTest: test_.buoy_(receive_multiple_arguments)
136
+ -------------------------------------------------------
137
+ Rendered breadcrumbs/_buoys.erb (1.1ms)
117
138
   (0.0ms) rollback transaction
118
-  (0.1ms) begin transaction
119
- --------------------------------------------
120
- BuoysHelerTest: test_.buoy_(not_only_active)
121
- --------------------------------------------
122
- Rendered breadcrumbs/_buoys.erb (3.4ms)
123
-  (0.1ms) rollback transaction
124
139
   (0.0ms) begin transaction
125
140
  --------------------------------------------------------------------------
126
141
  BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
@@ -128,9 +143,79 @@ BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
128
143
  Rendered breadcrumbs/_buoys.erb (0.3ms)
129
144
   (0.0ms) rollback transaction
130
145
   (0.0ms) begin transaction
146
+ ---------------------------------------------------
147
+ BuoysHelerTest: test_.buoy_(use_polymorphic_routes)
148
+ ---------------------------------------------------
149
+  (0.0ms) SAVEPOINT active_record_1
150
+ User Create (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test user"], ["created_at", "2021-01-16 05:26:08.467886"], ["updated_at", "2021-01-16 05:26:08.467886"]]
151
+  (0.0ms) RELEASE SAVEPOINT active_record_1
152
+  (0.0ms) SAVEPOINT active_record_1
153
+ Item Create (0.1ms) INSERT INTO "items" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test item"], ["created_at", "2021-01-16 05:26:08.472991"], ["updated_at", "2021-01-16 05:26:08.472991"]]
154
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155
+ Rendered breadcrumbs/_buoys.erb (1.0ms)
156
+  (0.1ms) rollback transaction
157
+  (0.0ms) begin transaction
158
+ --------------------------------------------
159
+ BuoysHelerTest: test_.buoy_(not_only_active)
160
+ --------------------------------------------
161
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
162
+  (0.0ms) rollback transaction
163
+  (0.0ms) begin transaction
164
+ -----------------------------------------
165
+ BuoysHelerTest: test_.buoy_(only_current)
166
+ -----------------------------------------
167
+ Rendered breadcrumbs/_buoys.erb (0.1ms)
168
+  (0.0ms) rollback transaction
169
+  (0.0ms) begin transaction
170
+ ------------------------------------------------------------
171
+ BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
172
+ ------------------------------------------------------------
173
+ Rendered breadcrumbs/_buoys.erb (0.1ms)
174
+  (0.0ms) rollback transaction
175
+  (0.0ms) begin transaction
176
+ ------------------------------------------
177
+ BuoysHelerTest: test_.buoys_(no_given_key)
178
+ ------------------------------------------
179
+ Rendered breadcrumbs/_buoys.erb (0.0ms)
180
+  (0.0ms) rollback transaction
181
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
182
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
183
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
184
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
185
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
186
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
187
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
188
+  (0.0ms) DROP TABLE IF EXISTS "items"
189
+  (0.0ms) SELECT sqlite_version(*)
190
+  (3.5ms) CREATE TABLE "items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
191
+  (0.0ms) DROP TABLE IF EXISTS "users"
192
+  (3.2ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
193
+  (7.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
194
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
195
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES (20160602144324)
196
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES
197
+ (20160602144150);
198
+
199
+ 
200
+  (3.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
201
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
202
+  (0.1ms) begin transaction
203
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2021-01-16 05:27:48.660914"], ["updated_at", "2021-01-16 05:27:48.660914"]]
204
+  (2.8ms) commit transaction
205
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
206
+  (0.1ms) begin transaction
207
+  (0.0ms) commit transaction
208
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
209
+  (0.0ms) begin transaction
131
210
  -----------------------------------------
132
211
  BuoysHelerTest: test_.buoy_(only_current)
133
212
  -----------------------------------------
213
+ Rendered breadcrumbs/_buoys.erb (2.4ms)
214
+  (0.0ms) rollback transaction
215
+  (0.0ms) begin transaction
216
+ -------------------------------------------------------
217
+ BuoysHelerTest: test_.buoy_(receive_multiple_arguments)
218
+ -------------------------------------------------------
134
219
  Rendered breadcrumbs/_buoys.erb (0.2ms)
135
220
   (0.0ms) rollback transaction
136
221
   (0.0ms) begin transaction
@@ -138,13 +223,19 @@ BuoysHelerTest: test_.buoy_(only_current)
138
223
  BuoysHelerTest: test_.buoy_(use_polymorphic_routes)
139
224
  ---------------------------------------------------
140
225
   (0.0ms) SAVEPOINT active_record_1
141
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test user"], ["created_at", 2016-11-16 16:31:01 UTC], ["updated_at", 2016-11-16 16:31:01 UTC]]
226
+ User Create (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test user"], ["created_at", "2021-01-16 05:27:48.722040"], ["updated_at", "2021-01-16 05:27:48.722040"]]
142
227
   (0.0ms) RELEASE SAVEPOINT active_record_1
143
-  (0.1ms) SAVEPOINT active_record_1
144
- SQL (0.1ms) INSERT INTO "items" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test item"], ["created_at", 2016-11-16 16:31:01 UTC], ["updated_at", 2016-11-16 16:31:01 UTC]]
228
+  (0.0ms) SAVEPOINT active_record_1
229
+ Item Create (0.1ms) INSERT INTO "items" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test item"], ["created_at", "2021-01-16 05:27:48.725072"], ["updated_at", "2021-01-16 05:27:48.725072"]]
145
230
   (0.0ms) RELEASE SAVEPOINT active_record_1
146
- Rendered breadcrumbs/_buoys.erb (1.6ms)
147
-  (0.1ms) rollback transaction
231
+ Rendered breadcrumbs/_buoys.erb (1.0ms)
232
+  (0.2ms) rollback transaction
233
+  (0.0ms) begin transaction
234
+ --------------------------------------------
235
+ BuoysHelerTest: test_.buoy_(not_only_active)
236
+ --------------------------------------------
237
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
238
+  (0.0ms) rollback transaction
148
239
   (0.0ms) begin transaction
149
240
  ------------------------------------------
150
241
  BuoysHelerTest: test_.buoys_(no_given_key)
@@ -152,33 +243,31 @@ BuoysHelerTest: test_.buoys_(no_given_key)
152
243
  Rendered breadcrumbs/_buoys.erb (0.0ms)
153
244
   (0.0ms) rollback transaction
154
245
   (0.0ms) begin transaction
246
+ --------------------------------------------------------------------------
247
+ BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
248
+ --------------------------------------------------------------------------
249
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
250
+  (0.0ms) rollback transaction
251
+  (0.0ms) begin transaction
155
252
  ------------------------------------------------------------
156
253
  BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
157
254
  ------------------------------------------------------------
158
- Rendered breadcrumbs/_buoys.erb (0.5ms)
159
-  (0.1ms) rollback transaction
160
-  (0.1ms) begin transaction
161
- -------------------------------------------------------
162
- BuoysHelerTest: test_.buoy_(receive_multiple_arguments)
163
- -------------------------------------------------------
164
- Rendered breadcrumbs/_buoys.erb (0.4ms)
165
-  (0.1ms) rollback transaction
166
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
167
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
168
-  (0.1ms) begin transaction
169
- ----------------------------
170
- BuoysLoaderTest: test_.buoys
171
- ----------------------------
172
-  (0.1ms) rollback transaction
255
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
256
+  (0.0ms) rollback transaction
257
+  (2.5ms) begin transaction
258
+ --------------------------------
259
+ BuoysTest: test_.buoy_file_paths
260
+ --------------------------------
261
+  (0.0ms) rollback transaction
173
262
   (0.0ms) begin transaction
174
263
  ---------------------------------
175
264
  BuoysLoaderTest: test_.buoy_files
176
265
  ---------------------------------
177
266
   (0.0ms) rollback transaction
178
267
   (0.0ms) begin transaction
179
- ----------------------------------------------------------------------------------
180
- BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
181
- ----------------------------------------------------------------------------------
268
+ ----------------------------
269
+ BuoysLoaderTest: test_.buoys
270
+ ----------------------------
182
271
   (0.0ms) rollback transaction
183
272
   (0.0ms) begin transaction
184
273
  ------------------------------------------------
@@ -186,111 +275,135 @@ BuoysBuoyTest: test_can_use_:symbol_as_link_name
186
275
  ------------------------------------------------
187
276
   (0.0ms) rollback transaction
188
277
   (0.0ms) begin transaction
278
+ ----------------------------------------------------------------------------------
279
+ BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
280
+ ----------------------------------------------------------------------------------
281
+  (0.0ms) rollback transaction
282
+  (0.0ms) begin transaction
283
+ -------------------------------------------
284
+ BuoysGeneratorTest: test_no_template_option
285
+ -------------------------------------------
286
+  (0.0ms) rollback transaction
287
+  (0.0ms) begin transaction
288
+ -----------------------------------------------
289
+ BuoysGeneratorTest: test_option_--template_haml
290
+ -----------------------------------------------
291
+  (0.0ms) rollback transaction
292
+  (0.0ms) begin transaction
293
+ -----------------------------------------------
294
+ BuoysGeneratorTest: test_option_--template_slim
295
+ -----------------------------------------------
296
+  (0.0ms) rollback transaction
297
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
298
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
299
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
300
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
301
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
302
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
303
+  (0.0ms) DROP TABLE IF EXISTS "items"
304
+  (0.0ms) SELECT sqlite_version(*)
305
+  (3.7ms) CREATE TABLE "items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
306
+  (0.0ms) DROP TABLE IF EXISTS "users"
307
+  (3.3ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
308
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
309
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
310
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES (20160602144324)
311
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES
312
+ (20160602144150);
313
+
314
+ 
315
+  (3.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
316
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
317
+  (0.0ms) begin transaction
318
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2021-01-16 06:42:24.935309"], ["updated_at", "2021-01-16 06:42:24.935309"]]
319
+  (2.7ms) commit transaction
320
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
321
+  (0.0ms) begin transaction
322
+  (0.0ms) commit transaction
323
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
324
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
325
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
326
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
327
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
328
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
329
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
330
+  (0.0ms) begin transaction
189
331
  --------------------------------
190
332
  BuoysTest: test_.buoy_file_paths
191
333
  --------------------------------
192
334
   (0.0ms) rollback transaction
193
335
   (0.0ms) begin transaction
194
- -----------------------------------------
195
- BuoysHelerTest: test_.buoy_(only_current)
196
- -----------------------------------------
197
- Rendered breadcrumbs/_buoys.erb (3.1ms)
198
-  (0.1ms) rollback transaction
336
+ -------------------------------------------
337
+ BuoysGeneratorTest: test_no_template_option
338
+ -------------------------------------------
339
+  (0.0ms) rollback transaction
340
+  (0.0ms) begin transaction
341
+ -----------------------------------------------
342
+ BuoysGeneratorTest: test_option_--template_haml
343
+ -----------------------------------------------
344
+  (0.0ms) rollback transaction
345
+  (0.0ms) begin transaction
346
+ -----------------------------------------------
347
+ BuoysGeneratorTest: test_option_--template_slim
348
+ -----------------------------------------------
349
+  (0.0ms) rollback transaction
350
+  (0.0ms) begin transaction
351
+ --------------------------------------------------------------------------
352
+ BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
353
+ --------------------------------------------------------------------------
354
+ Rendered breadcrumbs/_buoys.erb (2.2ms)
355
+  (0.0ms) rollback transaction
199
356
   (0.0ms) begin transaction
200
357
  ------------------------------------------------------------
201
358
  BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
202
359
  ------------------------------------------------------------
203
- Rendered breadcrumbs/_buoys.erb (0.3ms)
360
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
204
361
   (0.0ms) rollback transaction
205
362
   (0.0ms) begin transaction
206
363
  -------------------------------------------------------
207
364
  BuoysHelerTest: test_.buoy_(receive_multiple_arguments)
208
365
  -------------------------------------------------------
209
- Rendered breadcrumbs/_buoys.erb (0.3ms)
210
-  (0.0ms) rollback transaction
211
-  (0.0ms) begin transaction
212
- ---------------------------------------------------
213
- BuoysHelerTest: test_.buoy_(use_polymorphic_routes)
214
- ---------------------------------------------------
215
-  (0.0ms) SAVEPOINT active_record_1
216
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test user"], ["created_at", 2016-11-16 16:42:10 UTC], ["updated_at", 2016-11-16 16:42:10 UTC]]
217
-  (0.0ms) RELEASE SAVEPOINT active_record_1
218
-  (0.0ms) SAVEPOINT active_record_1
219
- SQL (0.1ms) INSERT INTO "items" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test item"], ["created_at", 2016-11-16 16:42:10 UTC], ["updated_at", 2016-11-16 16:42:10 UTC]]
220
-  (0.0ms) RELEASE SAVEPOINT active_record_1
221
- Rendered breadcrumbs/_buoys.erb (1.6ms)
222
-  (0.1ms) rollback transaction
223
-  (0.0ms) begin transaction
224
- ------------------------------------------
225
- BuoysHelerTest: test_.buoys_(no_given_key)
226
- ------------------------------------------
227
- Rendered breadcrumbs/_buoys.erb (0.0ms)
366
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
228
367
   (0.0ms) rollback transaction
229
368
   (0.0ms) begin transaction
230
- --------------------------------------------------------------------------
231
- BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
232
- --------------------------------------------------------------------------
233
- Rendered breadcrumbs/_buoys.erb (0.3ms)
234
-  (0.1ms) rollback transaction
235
-  (0.1ms) begin transaction
236
- --------------------------------------------
237
- BuoysHelerTest: test_.buoy_(not_only_active)
238
- --------------------------------------------
239
- Rendered breadcrumbs/_buoys.erb (0.8ms)
240
-  (0.1ms) rollback transaction
241
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
242
-  (0.1ms) begin transaction
243
369
  -----------------------------------------
244
370
  BuoysHelerTest: test_.buoy_(only_current)
245
371
  -----------------------------------------
246
- Rendered breadcrumbs/_buoys.erb (5.6ms)
247
-  (0.1ms) rollback transaction
248
-  (0.0ms) begin transaction
249
- -------------------------------------------------------
250
- BuoysHelerTest: test_.buoy_(receive_multiple_arguments)
251
- -------------------------------------------------------
252
- Rendered breadcrumbs/_buoys.erb (0.4ms)
372
+ Rendered breadcrumbs/_buoys.erb (0.1ms)
253
373
   (0.0ms) rollback transaction
254
374
   (0.0ms) begin transaction
255
375
  ---------------------------------------------------
256
376
  BuoysHelerTest: test_.buoy_(use_polymorphic_routes)
257
377
  ---------------------------------------------------
258
-  (0.1ms) SAVEPOINT active_record_1
259
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test user"], ["created_at", 2016-11-16 16:42:46 UTC], ["updated_at", 2016-11-16 16:42:46 UTC]]
378
+  (0.0ms) SAVEPOINT active_record_1
379
+ User Create (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test user"], ["created_at", "2021-01-16 06:44:21.455351"], ["updated_at", "2021-01-16 06:44:21.455351"]]
260
380
   (0.0ms) RELEASE SAVEPOINT active_record_1
261
381
   (0.0ms) SAVEPOINT active_record_1
262
- SQL (0.1ms) INSERT INTO "items" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test item"], ["created_at", 2016-11-16 16:42:46 UTC], ["updated_at", 2016-11-16 16:42:46 UTC]]
382
+ Item Create (0.1ms) INSERT INTO "items" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test item"], ["created_at", "2021-01-16 06:44:21.457947"], ["updated_at", "2021-01-16 06:44:21.457947"]]
263
383
   (0.0ms) RELEASE SAVEPOINT active_record_1
264
- Rendered breadcrumbs/_buoys.erb (2.1ms)
384
+ Rendered breadcrumbs/_buoys.erb (0.9ms)
265
385
   (0.1ms) rollback transaction
266
386
   (0.0ms) begin transaction
267
- ------------------------------------------------------------
268
- BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
269
- ------------------------------------------------------------
270
- Rendered breadcrumbs/_buoys.erb (0.3ms)
387
+ ------------------------------------------
388
+ BuoysHelerTest: test_.buoys_(no_given_key)
389
+ ------------------------------------------
390
+ Rendered breadcrumbs/_buoys.erb (0.0ms)
271
391
   (0.0ms) rollback transaction
272
392
   (0.0ms) begin transaction
273
393
  --------------------------------------------
274
394
  BuoysHelerTest: test_.buoy_(not_only_active)
275
395
  --------------------------------------------
276
- Rendered breadcrumbs/_buoys.erb (0.4ms)
277
-  (0.0ms) rollback transaction
278
-  (0.0ms) begin transaction
279
- --------------------------------------------------------------------------
280
- BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
281
- --------------------------------------------------------------------------
282
- Rendered breadcrumbs/_buoys.erb (0.3ms)
396
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
283
397
   (0.0ms) rollback transaction
284
398
   (0.0ms) begin transaction
285
- ------------------------------------------
286
- BuoysHelerTest: test_.buoys_(no_given_key)
287
- ------------------------------------------
288
- Rendered breadcrumbs/_buoys.erb (0.0ms)
399
+ ----------------------------
400
+ BuoysLoaderTest: test_.buoys
401
+ ----------------------------
289
402
   (0.0ms) rollback transaction
290
403
   (0.0ms) begin transaction
291
- --------------------------------
292
- BuoysTest: test_.buoy_file_paths
293
- --------------------------------
404
+ ---------------------------------
405
+ BuoysLoaderTest: test_.buoy_files
406
+ ---------------------------------
294
407
   (0.0ms) rollback transaction
295
408
   (0.0ms) begin transaction
296
409
  ----------------------------------------------------------------------------------
@@ -302,27 +415,63 @@ BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argume
302
415
  BuoysBuoyTest: test_can_use_:symbol_as_link_name
303
416
  ------------------------------------------------
304
417
   (0.0ms) rollback transaction
418
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
419
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
420
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
421
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
422
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
423
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
424
+  (0.0ms) DROP TABLE IF EXISTS "items"
425
+  (0.0ms) SELECT sqlite_version(*)
426
+  (21.7ms) CREATE TABLE "items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
427
+  (0.0ms) DROP TABLE IF EXISTS "users"
428
+  (22.2ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
429
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
430
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
431
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES (20160602144324)
432
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES
433
+ (20160602144150);
434
+
435
+ 
436
+  (3.4ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
437
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
305
438
   (0.0ms) begin transaction
306
- ---------------------------------
307
- BuoysLoaderTest: test_.buoy_files
308
- ---------------------------------
439
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2021-01-16 06:49:31.291865"], ["updated_at", "2021-01-16 06:49:31.291865"]]
440
+  (3.9ms) commit transaction
441
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
442
+  (0.1ms) begin transaction
443
+  (0.1ms) commit transaction
444
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
445
+  (0.1ms) begin transaction
446
+ -----------------------------------------------
447
+ BuoysGeneratorTest: test_option_--template_slim
448
+ -----------------------------------------------
309
449
   (0.0ms) rollback transaction
310
450
   (0.0ms) begin transaction
311
- ----------------------------
312
- BuoysLoaderTest: test_.buoys
313
- ----------------------------
451
+ -------------------------------------------
452
+ BuoysGeneratorTest: test_no_template_option
453
+ -------------------------------------------
314
454
   (0.0ms) rollback transaction
315
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
316
-  (0.1ms) begin transaction
455
+  (0.0ms) begin transaction
456
+ -----------------------------------------------
457
+ BuoysGeneratorTest: test_option_--template_haml
458
+ -----------------------------------------------
459
+  (0.0ms) rollback transaction
460
+  (0.0ms) begin transaction
317
461
  ----------------------------------------------------------------------------------
318
462
  BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
319
463
  ----------------------------------------------------------------------------------
320
-  (0.2ms) rollback transaction
321
-  (0.1ms) begin transaction
464
+  (0.0ms) rollback transaction
465
+  (0.0ms) begin transaction
322
466
  ------------------------------------------------
323
467
  BuoysBuoyTest: test_can_use_:symbol_as_link_name
324
468
  ------------------------------------------------
325
-  (0.1ms) rollback transaction
469
+  (0.0ms) rollback transaction
470
+  (0.0ms) begin transaction
471
+ --------------------------------
472
+ BuoysTest: test_.buoy_file_paths
473
+ --------------------------------
474
+  (0.0ms) rollback transaction
326
475
   (0.0ms) begin transaction
327
476
  ---------------------------------
328
477
  BuoysLoaderTest: test_.buoy_files
@@ -334,90 +483,55 @@ BuoysLoaderTest: test_.buoys
334
483
  ----------------------------
335
484
   (0.0ms) rollback transaction
336
485
   (0.0ms) begin transaction
337
- -------------------------------------------
338
- BuoysGeneratorTest: test_no_template_option
339
- -------------------------------------------
340
-  (0.1ms) rollback transaction
341
-  (0.1ms) begin transaction
342
- -----------------------------------------------
343
- BuoysGeneratorTest: test_option_--template_slim
344
- -----------------------------------------------
486
+ ------------------------------------------
487
+ BuoysHelerTest: test_.buoys_(no_given_key)
488
+ ------------------------------------------
489
+ Rendered breadcrumbs/_buoys.erb (0.5ms)
345
490
   (0.0ms) rollback transaction
346
491
   (0.0ms) begin transaction
347
- -----------------------------------------------
348
- BuoysGeneratorTest: test_option_--template_haml
349
- -----------------------------------------------
492
+ -----------------------------------------
493
+ BuoysHelerTest: test_.buoy_(only_current)
494
+ -----------------------------------------
495
+ Rendered breadcrumbs/_buoys.erb (0.1ms)
350
496
   (0.0ms) rollback transaction
351
497
   (0.0ms) begin transaction
352
- ------------------------------------------
353
- BuoysHelerTest: test_.buoys_(no_given_key)
354
- ------------------------------------------
355
- Rendered breadcrumbs/_buoys.erb (1.1ms)
498
+ ---------------------------------------------------
499
+ BuoysHelerTest: test_.buoy_(use_polymorphic_routes)
500
+ ---------------------------------------------------
501
+  (0.0ms) SAVEPOINT active_record_1
502
+ User Create (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test user"], ["created_at", "2021-01-16 06:59:19.608165"], ["updated_at", "2021-01-16 06:59:19.608165"]]
503
+  (0.0ms) RELEASE SAVEPOINT active_record_1
504
+  (0.0ms) SAVEPOINT active_record_1
505
+ Item Create (0.1ms) INSERT INTO "items" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test item"], ["created_at", "2021-01-16 06:59:19.610925"], ["updated_at", "2021-01-16 06:59:19.610925"]]
506
+  (0.0ms) RELEASE SAVEPOINT active_record_1
507
+ Rendered breadcrumbs/_buoys.erb (1.0ms)
356
508
   (0.1ms) rollback transaction
357
509
   (0.0ms) begin transaction
358
- ------------------------------------------------------------
359
- BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
360
- ------------------------------------------------------------
361
- Rendered breadcrumbs/_buoys.erb (2.2ms)
362
-  (0.1ms) rollback transaction
363
-  (0.1ms) begin transaction
364
510
  --------------------------------------------
365
511
  BuoysHelerTest: test_.buoy_(not_only_active)
366
512
  --------------------------------------------
367
- Rendered breadcrumbs/_buoys.erb (0.5ms)
368
-  (0.1ms) rollback transaction
513
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
514
+  (0.0ms) rollback transaction
369
515
   (0.0ms) begin transaction
370
- ---------------------------------------------------
371
- BuoysHelerTest: test_.buoy_(use_polymorphic_routes)
372
- ---------------------------------------------------
373
-  (0.1ms) SAVEPOINT active_record_1
374
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test user"], ["created_at", 2016-12-31 16:10:52 UTC], ["updated_at", 2016-12-31 16:10:52 UTC]]
375
-  (0.1ms) RELEASE SAVEPOINT active_record_1
376
-  (0.1ms) SAVEPOINT active_record_1
377
- SQL (0.1ms) INSERT INTO "items" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test item"], ["created_at", 2016-12-31 16:10:52 UTC], ["updated_at", 2016-12-31 16:10:52 UTC]]
378
-  (0.1ms) RELEASE SAVEPOINT active_record_1
379
- Rendered breadcrumbs/_buoys.erb (1.6ms)
380
-  (0.1ms) rollback transaction
381
-  (0.1ms) begin transaction
382
516
  -------------------------------------------------------
383
517
  BuoysHelerTest: test_.buoy_(receive_multiple_arguments)
384
518
  -------------------------------------------------------
385
- Rendered breadcrumbs/_buoys.erb (0.3ms)
519
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
386
520
   (0.0ms) rollback transaction
387
521
   (0.0ms) begin transaction
388
- -----------------------------------------
389
- BuoysHelerTest: test_.buoy_(only_current)
390
- -----------------------------------------
522
+ ------------------------------------------------------------
523
+ BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
524
+ ------------------------------------------------------------
391
525
  Rendered breadcrumbs/_buoys.erb (0.2ms)
392
-  (0.1ms) rollback transaction
526
+  (0.0ms) rollback transaction
393
527
   (0.0ms) begin transaction
394
528
  --------------------------------------------------------------------------
395
529
  BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
396
530
  --------------------------------------------------------------------------
397
- Rendered breadcrumbs/_buoys.erb (0.3ms)
398
-  (0.1ms) rollback transaction
399
-  (0.1ms) begin transaction
400
- --------------------------------
401
- BuoysTest: test_.buoy_file_paths
402
- --------------------------------
531
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
403
532
   (0.0ms) rollback transaction
404
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
533
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
405
534
   (0.1ms) begin transaction
406
- ---------------------------------
407
- BuoysLoaderTest: test_.buoy_files
408
- ---------------------------------
409
-  (0.0ms) rollback transaction
410
-  (0.0ms) begin transaction
411
- ----------------------------
412
- BuoysLoaderTest: test_.buoys
413
- ----------------------------
414
-  (0.0ms) rollback transaction
415
-  (0.0ms) begin transaction
416
- -----------------------------------------------
417
- BuoysGeneratorTest: test_option_--template_slim
418
- -----------------------------------------------
419
-  (0.0ms) rollback transaction
420
-  (0.0ms) begin transaction
421
535
  -------------------------------------------
422
536
  BuoysGeneratorTest: test_no_template_option
423
537
  -------------------------------------------
@@ -425,68 +539,83 @@ BuoysGeneratorTest: test_no_template_option
425
539
   (0.0ms) begin transaction
426
540
  -----------------------------------------------
427
541
  BuoysGeneratorTest: test_option_--template_haml
542
+ -----------------------------------------------
543
+  (0.0ms) rollback transaction
544
+  (0.0ms) begin transaction
545
+ -----------------------------------------------
546
+ BuoysGeneratorTest: test_option_--template_slim
428
547
  -----------------------------------------------
429
548
   (0.0ms) rollback transaction
430
549
   (0.0ms) begin transaction
431
550
  ----------------------------------------------------------------------------------
432
551
  BuoysBuoyTest: test_can_interpret_multiple_`link`s_in_one_buoy_block_with_argument
433
552
  ----------------------------------------------------------------------------------
434
-  (0.1ms) rollback transaction
553
+  (0.0ms) rollback transaction
435
554
   (0.0ms) begin transaction
436
555
  ------------------------------------------------
437
556
  BuoysBuoyTest: test_can_use_:symbol_as_link_name
438
557
  ------------------------------------------------
439
-  (0.1ms) rollback transaction
558
+  (0.0ms) rollback transaction
440
559
   (0.0ms) begin transaction
441
- --------------------------------
442
- BuoysTest: test_.buoy_file_paths
443
- --------------------------------
560
+ ---------------------------------
561
+ BuoysLoaderTest: test_.buoy_files
562
+ ---------------------------------
444
563
   (0.0ms) rollback transaction
445
564
   (0.0ms) begin transaction
446
- ------------------------------------------
447
- BuoysHelerTest: test_.buoys_(no_given_key)
448
- ------------------------------------------
449
- Rendered breadcrumbs/_buoys.erb (0.9ms)
565
+ ----------------------------
566
+ BuoysLoaderTest: test_.buoys
567
+ ----------------------------
450
568
   (0.0ms) rollback transaction
451
569
   (0.0ms) begin transaction
452
- --------------------------------------------------------------------------
453
- BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
454
- --------------------------------------------------------------------------
455
- Rendered breadcrumbs/_buoys.erb (2.1ms)
456
-  (0.1ms) rollback transaction
570
+ ------------------------------------------------------------
571
+ BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
572
+ ------------------------------------------------------------
573
+ Rendered breadcrumbs/_buoys.erb (0.7ms)
574
+  (0.0ms) rollback transaction
575
+  (0.0ms) begin transaction
576
+ --------------------------------------------
577
+ BuoysHelerTest: test_.buoy_(not_only_active)
578
+ --------------------------------------------
579
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
580
+  (0.0ms) rollback transaction
581
+  (0.0ms) begin transaction
582
+ -------------------------------------------------------
583
+ BuoysHelerTest: test_.buoy_(receive_multiple_arguments)
584
+ -------------------------------------------------------
585
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
586
+  (0.0ms) rollback transaction
457
587
   (0.0ms) begin transaction
458
588
  ---------------------------------------------------
459
589
  BuoysHelerTest: test_.buoy_(use_polymorphic_routes)
460
590
  ---------------------------------------------------
461
-  (0.1ms) SAVEPOINT active_record_1
462
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test user"], ["created_at", 2016-12-31 16:13:25 UTC], ["updated_at", 2016-12-31 16:13:25 UTC]]
591
+  (0.0ms) SAVEPOINT active_record_1
592
+ User Create (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test user"], ["created_at", "2021-01-16 07:16:07.460874"], ["updated_at", "2021-01-16 07:16:07.460874"]]
463
593
   (0.0ms) RELEASE SAVEPOINT active_record_1
464
594
   (0.0ms) SAVEPOINT active_record_1
465
- SQL (0.1ms) INSERT INTO "items" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test item"], ["created_at", 2016-12-31 16:13:25 UTC], ["updated_at", 2016-12-31 16:13:25 UTC]]
466
-  (0.1ms) RELEASE SAVEPOINT active_record_1
467
- Rendered breadcrumbs/_buoys.erb (2.6ms)
468
-  (0.3ms) rollback transaction
469
-  (0.1ms) begin transaction
595
+ Item Create (0.1ms) INSERT INTO "items" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "test item"], ["created_at", "2021-01-16 07:16:07.463444"], ["updated_at", "2021-01-16 07:16:07.463444"]]
596
+  (0.0ms) RELEASE SAVEPOINT active_record_1
597
+ Rendered breadcrumbs/_buoys.erb (1.1ms)
598
+  (0.1ms) rollback transaction
599
+  (0.0ms) begin transaction
470
600
  -----------------------------------------
471
601
  BuoysHelerTest: test_.buoy_(only_current)
472
602
  -----------------------------------------
473
- Rendered breadcrumbs/_buoys.erb (0.3ms)
603
+ Rendered breadcrumbs/_buoys.erb (0.1ms)
474
604
   (0.0ms) rollback transaction
475
605
   (0.0ms) begin transaction
476
- -------------------------------------------------------
477
- BuoysHelerTest: test_.buoy_(receive_multiple_arguments)
478
- -------------------------------------------------------
479
- Rendered breadcrumbs/_buoys.erb (0.3ms)
606
+ ------------------------------------------
607
+ BuoysHelerTest: test_.buoys_(no_given_key)
608
+ ------------------------------------------
609
+ Rendered breadcrumbs/_buoys.erb (0.0ms)
480
610
   (0.0ms) rollback transaction
481
611
   (0.0ms) begin transaction
482
- --------------------------------------------
483
- BuoysHelerTest: test_.buoy_(not_only_active)
484
- --------------------------------------------
485
- Rendered breadcrumbs/_buoys.erb (0.4ms)
612
+ --------------------------------------------------------------------------
613
+ BuoysHelerTest: test_.buoy_(has_configuration_options_in_link's_arguments)
614
+ --------------------------------------------------------------------------
615
+ Rendered breadcrumbs/_buoys.erb (0.2ms)
486
616
   (0.0ms) rollback transaction
487
617
   (0.0ms) begin transaction
488
- ------------------------------------------------------------
489
- BuoysHelerTest: test_.buoy_(has_2_`link`s_in_one_buoy_block)
490
- ------------------------------------------------------------
491
- Rendered breadcrumbs/_buoys.erb (0.3ms)
618
+ --------------------------------
619
+ BuoysTest: test_.buoy_file_paths
620
+ --------------------------------
492
621
   (0.0ms) rollback transaction