act_as_backdrop 0.0.3 → 0.0.4

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: d26228c20f256a00cb954e556a159421e380a060
4
- data.tar.gz: c77210ce9dd971a2139de85a904454b170075735
3
+ metadata.gz: 44915c1aa3affd337b9798d4b26925a529eb8c25
4
+ data.tar.gz: 11093ed3ddbf122261786873b922037af137585c
5
5
  SHA512:
6
- metadata.gz: 938eb934f6752b9c67219f454ea9d15b3bda759e6c634d0518a1d4c45b1d5f61264a8285af37139aca50d20897cead67a096d4b17a258a9b49d68118e8858648
7
- data.tar.gz: c40dc585f8a35e3345a53bd08843eb2bcd56fc14dd3ac37fd14a33e1eac67125384b85fcf839fb32d55bdb34962a22c5c111e15265bb1e353b9a2b5ad8ed5a36
6
+ metadata.gz: e0ba810cfefa7c053416489f96e8e3878384f7bccee8de27c995fd426ae08e37e14ce61e4b0c017e21dd1be8e3b4304551272054983c991cca84f6c4b6a57945
7
+ data.tar.gz: 58c918404d4b864a62fc4bbf121b80d18bcba839f74a6cfecaf567f873e3f0fe8a05f6ac9c99c27027669b5e8d19699656e04ad6dcc524c4f45eac8c3de038ec
@@ -14,13 +14,18 @@ Example
14
14
 
15
15
  def backdrop_process(message)
16
16
 
17
- # example that you receive:
18
- # { "class"=>"Something",
19
- # "gid"=>"gid://dummy/Something/1",
20
- # "changes"=>{"title"=>[nil, "abc"],
21
- # "created_at"=>[nil, "2015-12-17T20:28:52.307Z"],
22
- # "updated_at"=>[nil, "2015-12-17T20:28:52.307Z"],
23
- # "id"=>[nil, 1]} }
17
+ # This will be processed asyncronously after model save.
18
+ # Example that you receive as 'message' variable:
19
+ #
20
+ # { "class" => "Something",
21
+ # "gid" => "gid://dummy/Something/1",
22
+ # "changes" => {
23
+ # "title" => [nil, "abc"],
24
+ # "created_at" => [nil, "2015-12-17T20:28:52.307Z"],
25
+ # "updated_at" => [nil, "2015-12-17T20:28:52.307Z"],
26
+ # "id" => [nil, 1]
27
+ # }
28
+ # }
24
29
 
25
30
  end
26
31
 
@@ -31,10 +36,16 @@ Why
31
36
 
32
37
  Because you might need to process some data *after* the model is saved, asynchronously.
33
38
 
39
+ Installation
40
+ ------------
41
+
42
+ gem 'act_as_backdrop' # Gemfile
43
+ require 'backdrop' # application.rb
44
+
34
45
  How it works
35
46
  ------------
36
47
 
37
48
  When your model instance saved (on after_save callback), the model itself and it's changes published to async job queue as usual DelayedJob.
38
49
  The special worker (BackdropJob class) will process this message and will trigger your 'backdrop_process' method inside your model.
39
50
 
40
- You receive full information about model changes, and can process it as you wish.
51
+ You receive full information about model changes, and can process it as you wish. If you change the model state at this step, the next async task will happen and be processed in same way.
@@ -6,7 +6,8 @@ module Backdrop
6
6
  module ClassMethods
7
7
  def acts_as_backdrop(options = {})
8
8
  include Backdrop::ActAsBackdrop::LocalInstanceMethods
9
- after_save :acts_as_backdrop
9
+ #after_save :acts_as_backdrop
10
+ after_commit :acts_as_backdrop, on: [:create, :update]
10
11
  end
11
12
  end
12
13
 
@@ -1,3 +1,3 @@
1
1
  module Backdrop
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -7,18 +7,25 @@ class ActAsBackdropTest < ActiveSupport::TestCase
7
7
 
8
8
  model = Something.new
9
9
  model.save
10
+ model.run_callbacks(:commit)
10
11
 
11
12
  model.title = 'abc'
12
13
  model.save
14
+ model.run_callbacks(:commit)
15
+
16
+ assert_equal 'abc', File.read('check.txt')
13
17
 
14
18
  model.title = 'def'
15
19
  model.save
20
+ model.run_callbacks(:commit)
21
+
22
+ assert_equal 'def', File.read('check.txt')
16
23
 
17
24
  model.title = 'something better'
18
25
  model.save
26
+ model.run_callbacks(:commit)
19
27
 
20
- model.reload
21
- assert_equal 'def', model.check
28
+ assert_equal 'something better', File.read('check.txt')
22
29
 
23
30
  end
24
31
 
@@ -3,19 +3,24 @@ class Something < ActiveRecord::Base
3
3
 
4
4
  def backdrop_process(message)
5
5
 
6
- # example that you receive:
7
- # { "class"=>"Something",
8
- # "gid"=>"gid://dummy/Something/1",
9
- # "changes"=>{"title"=>[nil, "abc"],
10
- # "created_at"=>[nil, "2015-12-17T20:28:52.307Z"],
11
- # "updated_at"=>[nil, "2015-12-17T20:28:52.307Z"],
12
- # "id"=>[nil, 1]} }
6
+ # This will be processed asyncronously after model save.
7
+ # Example that you receive as 'message' variable:
8
+ #
9
+ # { "class" => "Something",
10
+ # "gid" => "gid://dummy/Something/1",
11
+ # "changes" => {
12
+ # "title" => [nil, "abc"],
13
+ # "created_at" => [nil, "2015-12-17T20:28:52.307Z"],
14
+ # "updated_at" => [nil, "2015-12-17T20:28:52.307Z"],
15
+ # "id" => [nil, 1]
16
+ # }
17
+ # }
13
18
 
14
19
  # for example, we put changes of the title into 'check' attribute to check them in tests
15
20
  if message['changes'].present? && message['changes']['title'].present?
16
21
  old_title = message['changes']['title'].first
17
22
  new_title = message['changes']['title'].last
18
- self.update(:check => new_title)
23
+ File.write('check.txt', new_title)
19
24
  end
20
25
 
21
26
  end
Binary file
@@ -117,3 +117,53 @@ Migrating to AddCheckToSomething (20151217203211)
117
117
  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
118
118
  ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
119
119
  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
120
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" ORDER BY "somethings"."id" DESC LIMIT 1
121
+  (0.1ms) begin transaction
122
+ SQL (0.6ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", ""], ["created_at", "2015-12-18 18:11:51.995530"], ["updated_at", "2015-12-18 18:11:51.995530"]]
123
+ [ActiveJob] [BackdropJob] [e78b65df-87d7-4b11-b380-0bb1b9441d33] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
124
+ [ActiveJob] [BackdropJob] [e78b65df-87d7-4b11-b380-0bb1b9441d33] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
125
+ [ActiveJob] [BackdropJob] [e78b65df-87d7-4b11-b380-0bb1b9441d33] Performed BackdropJob from Inline(default) in 12.82ms
126
+ [ActiveJob] Enqueued BackdropJob (Job ID: e78b65df-87d7-4b11-b380-0bb1b9441d33) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
127
+  (2.7ms) commit transaction
128
+  (0.2ms) begin transaction
129
+ SQL (1.3ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:12:02.707786"], ["id", 1]]
130
+ [ActiveJob] [BackdropJob] [abaff74e-5183-401d-9145-727d8b09a635] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"\"],\"created_at\":[null,\"2015-12-18T18:11:51.995Z\"],\"updated_at\":[null,\"2015-12-18T18:11:51.995Z\"],\"id\":[null,1]}}"
131
+ [ActiveJob] [BackdropJob] [abaff74e-5183-401d-9145-727d8b09a635] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
132
+ [ActiveJob] [BackdropJob] [abaff74e-5183-401d-9145-727d8b09a635] SQL (0.7ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", ""], ["updated_at", "2015-12-18 18:12:02.714135"], ["id", 1]]
133
+ [ActiveJob] [BackdropJob] [abaff74e-5183-401d-9145-727d8b09a635] [BackdropJob] [cee12f6d-916f-455c-b547-b1d05ccc6dfc] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
134
+ [ActiveJob] [BackdropJob] [abaff74e-5183-401d-9145-727d8b09a635] [BackdropJob] [cee12f6d-916f-455c-b547-b1d05ccc6dfc] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
135
+ [ActiveJob] [BackdropJob] [abaff74e-5183-401d-9145-727d8b09a635] [BackdropJob] [cee12f6d-916f-455c-b547-b1d05ccc6dfc] Performed BackdropJob from Inline(default) in 1.23ms
136
+ [ActiveJob] [BackdropJob] [abaff74e-5183-401d-9145-727d8b09a635] Enqueued BackdropJob (Job ID: cee12f6d-916f-455c-b547-b1d05ccc6dfc) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
137
+ [ActiveJob] [BackdropJob] [abaff74e-5183-401d-9145-727d8b09a635] Performed BackdropJob from Inline(default) in 6.95ms
138
+ [ActiveJob] Enqueued BackdropJob (Job ID: abaff74e-5183-401d-9145-727d8b09a635) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"\"],\"created_at\":[null,\"2015-12-18T18:11:51.995Z\"],\"updated_at\":[null,\"2015-12-18T18:11:51.995Z\"],\"id\":[null,1]}}"
139
+  (2.8ms) commit transaction
140
+  (0.1ms) begin transaction
141
+ SQL (0.2ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", ""], ["created_at", "2015-12-18 18:13:59.963683"], ["updated_at", "2015-12-18 18:13:59.963683"]]
142
+ [ActiveJob] [BackdropJob] [3c85ff8b-e27f-4d19-b635-537e18be848b] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/2\",\"changes\":{}}"
143
+ [ActiveJob] [BackdropJob] [3c85ff8b-e27f-4d19-b635-537e18be848b] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 2]]
144
+ [ActiveJob] [BackdropJob] [3c85ff8b-e27f-4d19-b635-537e18be848b] Performed BackdropJob from Inline(default) in 8.24ms
145
+ [ActiveJob] Enqueued BackdropJob (Job ID: 3c85ff8b-e27f-4d19-b635-537e18be848b) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/2\",\"changes\":{}}"
146
+  (2.6ms) commit transaction
147
+  (0.2ms) begin transaction
148
+ SQL (0.5ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:14:08.058005"], ["id", 2]]
149
+ [ActiveJob] [BackdropJob] [49b33028-c762-4f3d-a5a5-e22ae5628149] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/2\",\"changes\":{\"title\":[null,\"\"],\"created_at\":[null,\"2015-12-18T18:13:59.963Z\"],\"updated_at\":[null,\"2015-12-18T18:13:59.963Z\"],\"id\":[null,2]}}"
150
+ [ActiveJob] [BackdropJob] [49b33028-c762-4f3d-a5a5-e22ae5628149] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 2]]
151
+ [ActiveJob] [BackdropJob] [49b33028-c762-4f3d-a5a5-e22ae5628149] SQL (0.6ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", ""], ["updated_at", "2015-12-18 18:14:08.064190"], ["id", 2]]
152
+ [ActiveJob] [BackdropJob] [49b33028-c762-4f3d-a5a5-e22ae5628149] [BackdropJob] [45a00fdc-6ab6-4518-80e5-3989360d8426] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/2\",\"changes\":{}}"
153
+ [ActiveJob] [BackdropJob] [49b33028-c762-4f3d-a5a5-e22ae5628149] [BackdropJob] [45a00fdc-6ab6-4518-80e5-3989360d8426] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 2]]
154
+ [ActiveJob] [BackdropJob] [49b33028-c762-4f3d-a5a5-e22ae5628149] [BackdropJob] [45a00fdc-6ab6-4518-80e5-3989360d8426] Performed BackdropJob from Inline(default) in 1.48ms
155
+ [ActiveJob] [BackdropJob] [49b33028-c762-4f3d-a5a5-e22ae5628149] Enqueued BackdropJob (Job ID: 45a00fdc-6ab6-4518-80e5-3989360d8426) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/2\",\"changes\":{}}"
156
+ [ActiveJob] [BackdropJob] [49b33028-c762-4f3d-a5a5-e22ae5628149] Performed BackdropJob from Inline(default) in 7.02ms
157
+ [ActiveJob] Enqueued BackdropJob (Job ID: 49b33028-c762-4f3d-a5a5-e22ae5628149) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/2\",\"changes\":{\"title\":[null,\"\"],\"created_at\":[null,\"2015-12-18T18:13:59.963Z\"],\"updated_at\":[null,\"2015-12-18T18:13:59.963Z\"],\"id\":[null,2]}}"
158
+  (3.1ms) commit transaction
159
+  (0.1ms) begin transaction
160
+ [ActiveJob] [BackdropJob] [424cd78a-77e5-40fc-b79c-a5860591b5ed] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/2\",\"changes\":{\"title\":[\"\",\"abc\"],\"updated_at\":[\"2015-12-18T18:13:59.963Z\",\"2015-12-18T18:14:08.058Z\"]}}"
161
+ [ActiveJob] [BackdropJob] [424cd78a-77e5-40fc-b79c-a5860591b5ed] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 2]]
162
+ [ActiveJob] [BackdropJob] [424cd78a-77e5-40fc-b79c-a5860591b5ed] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-18 18:14:09.628805"], ["id", 2]]
163
+ [ActiveJob] [BackdropJob] [424cd78a-77e5-40fc-b79c-a5860591b5ed] [BackdropJob] [4294b7f9-b0d3-420e-9995-d02c75002925] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/2\",\"changes\":{}}"
164
+ [ActiveJob] [BackdropJob] [424cd78a-77e5-40fc-b79c-a5860591b5ed] [BackdropJob] [4294b7f9-b0d3-420e-9995-d02c75002925] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 2]]
165
+ [ActiveJob] [BackdropJob] [424cd78a-77e5-40fc-b79c-a5860591b5ed] [BackdropJob] [4294b7f9-b0d3-420e-9995-d02c75002925] Performed BackdropJob from Inline(default) in 1.19ms
166
+ [ActiveJob] [BackdropJob] [424cd78a-77e5-40fc-b79c-a5860591b5ed] Enqueued BackdropJob (Job ID: 4294b7f9-b0d3-420e-9995-d02c75002925) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/2\",\"changes\":{}}"
167
+ [ActiveJob] [BackdropJob] [424cd78a-77e5-40fc-b79c-a5860591b5ed] Performed BackdropJob from Inline(default) in 6.11ms
168
+ [ActiveJob] Enqueued BackdropJob (Job ID: 424cd78a-77e5-40fc-b79c-a5860591b5ed) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/2\",\"changes\":{\"title\":[\"\",\"abc\"],\"updated_at\":[\"2015-12-18T18:13:59.963Z\",\"2015-12-18T18:14:08.058Z\"]}}"
169
+  (2.2ms) commit transaction
@@ -2715,3 +2715,1740 @@ SomethingTest: test_backdrop_test
2715
2715
   (0.1ms) RELEASE SAVEPOINT active_record_1
2716
2716
  Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2717
2717
   (0.1ms) rollback transaction
2718
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2719
+  (0.2ms) begin transaction
2720
+ Fixture Delete (0.9ms) DELETE FROM "somethings"
2721
+ Fixture Insert (0.3ms) INSERT INTO "somethings" ("title", "created_at", "updated_at", "id") VALUES ('MyString', '2015-12-18 18:13:49', '2015-12-18 18:13:49', 980190962)
2722
+ Fixture Insert (0.1ms) INSERT INTO "somethings" ("title", "created_at", "updated_at", "id") VALUES ('MyString', '2015-12-18 18:13:49', '2015-12-18 18:13:49', 298486374)
2723
+  (2.6ms) commit transaction
2724
+  (0.1ms) begin transaction
2725
+ Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190962]]
2726
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 298486374]]
2727
+ ---------------------------------
2728
+ SomethingTest: test_backdrop_test
2729
+ ---------------------------------
2730
+  (0.0ms) SAVEPOINT active_record_1
2731
+ SQL (1.4ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:13:49.528233"], ["updated_at", "2015-12-18 18:13:49.528233"]]
2732
+ [ActiveJob] [BackdropJob] [989cbcd5-674b-4f28-a197-5d9193ce80a4] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{}}"
2733
+ [ActiveJob] [BackdropJob] [989cbcd5-674b-4f28-a197-5d9193ce80a4] Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2734
+ [ActiveJob] [BackdropJob] [989cbcd5-674b-4f28-a197-5d9193ce80a4] Performed BackdropJob from Inline(default) in 9.05ms
2735
+ [ActiveJob] Enqueued BackdropJob (Job ID: 989cbcd5-674b-4f28-a197-5d9193ce80a4) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{}}"
2736
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2737
+  (0.1ms) SAVEPOINT active_record_1
2738
+ SQL (0.6ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:13:49.545470"], ["id", 980190963]]
2739
+ [ActiveJob] [BackdropJob] [26aeefcc-9ea8-461e-afcd-475bf0206a77] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:13:49.528Z\"],\"updated_at\":[null,\"2015-12-18T18:13:49.528Z\"],\"id\":[null,980190963]}}"
2740
+ [ActiveJob] [BackdropJob] [26aeefcc-9ea8-461e-afcd-475bf0206a77] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2741
+ [ActiveJob] [BackdropJob] [26aeefcc-9ea8-461e-afcd-475bf0206a77] Performed BackdropJob from Inline(default) in 1.24ms
2742
+ [ActiveJob] Enqueued BackdropJob (Job ID: 26aeefcc-9ea8-461e-afcd-475bf0206a77) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:13:49.528Z\"],\"updated_at\":[null,\"2015-12-18T18:13:49.528Z\"],\"id\":[null,980190963]}}"
2743
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2744
+  (0.1ms) SAVEPOINT active_record_1
2745
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:13:49.550811"], ["id", 980190963]]
2746
+ [ActiveJob] [BackdropJob] [aa856b3a-2411-4882-ba7e-019e673ffb2a] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:13:49.528Z\",\"2015-12-18T18:13:49.545Z\"]}}"
2747
+ [ActiveJob] [BackdropJob] [aa856b3a-2411-4882-ba7e-019e673ffb2a] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2748
+ [ActiveJob] [BackdropJob] [aa856b3a-2411-4882-ba7e-019e673ffb2a] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-18 18:13:49.554081"], ["id", 980190963]]
2749
+ [ActiveJob] [BackdropJob] [aa856b3a-2411-4882-ba7e-019e673ffb2a] [BackdropJob] [470306e0-94b3-482c-8595-bc737fb42603] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{}}"
2750
+ [ActiveJob] [BackdropJob] [aa856b3a-2411-4882-ba7e-019e673ffb2a] [BackdropJob] [470306e0-94b3-482c-8595-bc737fb42603] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2751
+ [ActiveJob] [BackdropJob] [aa856b3a-2411-4882-ba7e-019e673ffb2a] [BackdropJob] [470306e0-94b3-482c-8595-bc737fb42603] Performed BackdropJob from Inline(default) in 0.49ms
2752
+ [ActiveJob] [BackdropJob] [aa856b3a-2411-4882-ba7e-019e673ffb2a] Enqueued BackdropJob (Job ID: 470306e0-94b3-482c-8595-bc737fb42603) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{}}"
2753
+ [ActiveJob] [BackdropJob] [aa856b3a-2411-4882-ba7e-019e673ffb2a] Performed BackdropJob from Inline(default) in 4.55ms
2754
+ [ActiveJob] Enqueued BackdropJob (Job ID: aa856b3a-2411-4882-ba7e-019e673ffb2a) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:13:49.528Z\",\"2015-12-18T18:13:49.545Z\"]}}"
2755
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2756
+  (0.0ms) SAVEPOINT active_record_1
2757
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:13:49.557784"], ["id", 980190963]]
2758
+ [ActiveJob] [BackdropJob] [a8285e74-5eff-4455-b731-99b9669be5da] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:13:49.545Z\",\"2015-12-18T18:13:49.550Z\"]}}"
2759
+ [ActiveJob] [BackdropJob] [a8285e74-5eff-4455-b731-99b9669be5da] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2760
+ [ActiveJob] [BackdropJob] [a8285e74-5eff-4455-b731-99b9669be5da] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "def"], ["updated_at", "2015-12-18 18:13:49.559254"], ["id", 980190963]]
2761
+ [ActiveJob] [BackdropJob] [a8285e74-5eff-4455-b731-99b9669be5da] [BackdropJob] [9a79f4ff-e08b-4272-815b-f6708e66ec54] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{}}"
2762
+ [ActiveJob] [BackdropJob] [a8285e74-5eff-4455-b731-99b9669be5da] [BackdropJob] [9a79f4ff-e08b-4272-815b-f6708e66ec54] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2763
+ [ActiveJob] [BackdropJob] [a8285e74-5eff-4455-b731-99b9669be5da] [BackdropJob] [9a79f4ff-e08b-4272-815b-f6708e66ec54] Performed BackdropJob from Inline(default) in 0.49ms
2764
+ [ActiveJob] [BackdropJob] [a8285e74-5eff-4455-b731-99b9669be5da] Enqueued BackdropJob (Job ID: 9a79f4ff-e08b-4272-815b-f6708e66ec54) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{}}"
2765
+ [ActiveJob] [BackdropJob] [a8285e74-5eff-4455-b731-99b9669be5da] Performed BackdropJob from Inline(default) in 2.28ms
2766
+ [ActiveJob] Enqueued BackdropJob (Job ID: a8285e74-5eff-4455-b731-99b9669be5da) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:13:49.545Z\",\"2015-12-18T18:13:49.550Z\"]}}"
2767
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2768
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2769
+  (0.1ms) rollback transaction
2770
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2771
+  (0.2ms) begin transaction
2772
+ ------------------------
2773
+ BackdropTest: test_truth
2774
+ ------------------------
2775
+  (0.1ms) rollback transaction
2776
+  (0.2ms) begin transaction
2777
+ ---------------------------------
2778
+ SomethingTest: test_backdrop_test
2779
+ ---------------------------------
2780
+  (0.1ms) SAVEPOINT active_record_1
2781
+ SQL (59.6ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:19:40.440638"], ["updated_at", "2015-12-18 18:19:40.440638"]]
2782
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2783
+  (0.1ms) SAVEPOINT active_record_1
2784
+ SQL (10.9ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:19:40.504502"], ["id", 980190963]]
2785
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2786
+  (0.1ms) SAVEPOINT active_record_1
2787
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:19:40.522901"], ["id", 980190963]]
2788
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2789
+  (0.1ms) SAVEPOINT active_record_1
2790
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:19:40.524884"], ["id", 980190963]]
2791
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2792
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2793
+  (0.2ms) rollback transaction
2794
+  (0.1ms) begin transaction
2795
+ ---------------------------------------------
2796
+ ActAsBackdropTest: test_model_act_as_backdrop
2797
+ ---------------------------------------------
2798
+  (0.1ms) SAVEPOINT active_record_1
2799
+ SQL (0.2ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:19:40.532053"], ["updated_at", "2015-12-18 18:19:40.532053"]]
2800
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2801
+  (0.1ms) SAVEPOINT active_record_1
2802
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:19:40.534176"], ["id", 980190963]]
2803
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2804
+  (0.1ms) SAVEPOINT active_record_1
2805
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:19:40.536027"], ["id", 980190963]]
2806
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2807
+  (0.1ms) SAVEPOINT active_record_1
2808
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:19:40.538310"], ["id", 980190963]]
2809
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2810
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2811
+  (0.2ms) rollback transaction
2812
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2813
+  (0.2ms) begin transaction
2814
+ ---------------------------------------------
2815
+ ActAsBackdropTest: test_model_act_as_backdrop
2816
+ ---------------------------------------------
2817
+  (0.1ms) SAVEPOINT active_record_1
2818
+ SQL (1.7ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:20:30.573347"], ["updated_at", "2015-12-18 18:20:30.573347"]]
2819
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2820
+  (0.1ms) SAVEPOINT active_record_1
2821
+ SQL (0.6ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:20:30.581427"], ["id", 980190963]]
2822
+  (0.9ms) RELEASE SAVEPOINT active_record_1
2823
+  (0.1ms) SAVEPOINT active_record_1
2824
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:20:30.590059"], ["id", 980190963]]
2825
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2826
+  (0.1ms) SAVEPOINT active_record_1
2827
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:20:30.592225"], ["id", 980190963]]
2828
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2829
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2830
+  (0.2ms) rollback transaction
2831
+  (0.1ms) begin transaction
2832
+ ---------------------------------
2833
+ SomethingTest: test_backdrop_test
2834
+ ---------------------------------
2835
+  (0.0ms) SAVEPOINT active_record_1
2836
+ SQL (0.2ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:20:30.601341"], ["updated_at", "2015-12-18 18:20:30.601341"]]
2837
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2838
+  (0.0ms) SAVEPOINT active_record_1
2839
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:20:30.602928"], ["id", 980190963]]
2840
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2841
+  (0.0ms) SAVEPOINT active_record_1
2842
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:20:30.604000"], ["id", 980190963]]
2843
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2844
+  (0.0ms) SAVEPOINT active_record_1
2845
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:20:30.604910"], ["id", 980190963]]
2846
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2847
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2848
+  (0.1ms) rollback transaction
2849
+  (0.1ms) begin transaction
2850
+ ------------------------
2851
+ BackdropTest: test_truth
2852
+ ------------------------
2853
+  (0.0ms) rollback transaction
2854
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2855
+  (0.2ms) begin transaction
2856
+ ---------------------------------------------
2857
+ ActAsBackdropTest: test_model_act_as_backdrop
2858
+ ---------------------------------------------
2859
+  (0.1ms) SAVEPOINT active_record_1
2860
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:20:48.673206"], ["updated_at", "2015-12-18 18:20:48.673206"]]
2861
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2862
+  (0.0ms) SAVEPOINT active_record_1
2863
+ SQL (0.3ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:20:48.678482"], ["id", 980190963]]
2864
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2865
+  (0.1ms) SAVEPOINT active_record_1
2866
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:20:48.685417"], ["id", 980190963]]
2867
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2868
+  (0.1ms) SAVEPOINT active_record_1
2869
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:20:48.687326"], ["id", 980190963]]
2870
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2871
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2872
+  (0.2ms) rollback transaction
2873
+  (0.0ms) begin transaction
2874
+ ------------------------
2875
+ BackdropTest: test_truth
2876
+ ------------------------
2877
+  (0.0ms) rollback transaction
2878
+  (0.0ms) begin transaction
2879
+ ---------------------------------
2880
+ SomethingTest: test_backdrop_test
2881
+ ---------------------------------
2882
+  (0.1ms) SAVEPOINT active_record_1
2883
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:20:48.694336"], ["updated_at", "2015-12-18 18:20:48.694336"]]
2884
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2885
+  (0.0ms) SAVEPOINT active_record_1
2886
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:20:48.695330"], ["id", 980190963]]
2887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2888
+  (0.0ms) SAVEPOINT active_record_1
2889
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:20:48.696195"], ["id", 980190963]]
2890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2891
+  (0.0ms) SAVEPOINT active_record_1
2892
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:20:48.697118"], ["id", 980190963]]
2893
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2894
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2895
+  (0.1ms) rollback transaction
2896
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2897
+  (0.1ms) begin transaction
2898
+ ---------------------------------------------
2899
+ ActAsBackdropTest: test_model_act_as_backdrop
2900
+ ---------------------------------------------
2901
+  (0.1ms) SAVEPOINT active_record_1
2902
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:20:51.542779"], ["updated_at", "2015-12-18 18:20:51.542779"]]
2903
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2904
+  (0.0ms) SAVEPOINT active_record_1
2905
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:20:51.545567"], ["id", 980190963]]
2906
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2907
+  (0.1ms) SAVEPOINT active_record_1
2908
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:20:51.548586"], ["id", 980190963]]
2909
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2910
+  (0.0ms) SAVEPOINT active_record_1
2911
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:20:51.549432"], ["id", 980190963]]
2912
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2913
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2914
+  (0.1ms) rollback transaction
2915
+  (0.1ms) begin transaction
2916
+ ------------------------
2917
+ BackdropTest: test_truth
2918
+ ------------------------
2919
+  (0.0ms) rollback transaction
2920
+  (0.1ms) begin transaction
2921
+ ---------------------------------
2922
+ SomethingTest: test_backdrop_test
2923
+ ---------------------------------
2924
+  (0.0ms) SAVEPOINT active_record_1
2925
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:20:51.553345"], ["updated_at", "2015-12-18 18:20:51.553345"]]
2926
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2927
+  (0.0ms) SAVEPOINT active_record_1
2928
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:20:51.554306"], ["id", 980190963]]
2929
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2930
+  (0.0ms) SAVEPOINT active_record_1
2931
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:20:51.555154"], ["id", 980190963]]
2932
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2933
+  (0.0ms) SAVEPOINT active_record_1
2934
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:20:51.556001"], ["id", 980190963]]
2935
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2936
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2937
+  (0.1ms) rollback transaction
2938
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2939
+  (0.2ms) begin transaction
2940
+ ---------------------------------
2941
+ SomethingTest: test_backdrop_test
2942
+ ---------------------------------
2943
+  (0.1ms) SAVEPOINT active_record_1
2944
+ SQL (2.2ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:23:15.402076"], ["updated_at", "2015-12-18 18:23:15.402076"]]
2945
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2946
+  (0.1ms) SAVEPOINT active_record_1
2947
+ SQL (0.6ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:23:15.415338"], ["id", 980190963]]
2948
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2949
+  (0.1ms) SAVEPOINT active_record_1
2950
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:23:15.424077"], ["id", 980190963]]
2951
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2952
+  (0.1ms) SAVEPOINT active_record_1
2953
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:23:15.425966"], ["id", 980190963]]
2954
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2955
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2956
+  (0.2ms) rollback transaction
2957
+  (0.1ms) begin transaction
2958
+ ------------------------
2959
+ BackdropTest: test_truth
2960
+ ------------------------
2961
+  (0.1ms) rollback transaction
2962
+  (0.1ms) begin transaction
2963
+ ---------------------------------------------
2964
+ ActAsBackdropTest: test_model_act_as_backdrop
2965
+ ---------------------------------------------
2966
+  (0.1ms) SAVEPOINT active_record_1
2967
+ SQL (0.2ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:23:15.433932"], ["updated_at", "2015-12-18 18:23:15.433932"]]
2968
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2969
+  (0.1ms) SAVEPOINT active_record_1
2970
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:23:15.436042"], ["id", 980190963]]
2971
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2972
+  (0.1ms) SAVEPOINT active_record_1
2973
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:23:15.437861"], ["id", 980190963]]
2974
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2975
+  (0.1ms) SAVEPOINT active_record_1
2976
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:23:15.439675"], ["id", 980190963]]
2977
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2978
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2979
+  (0.1ms) rollback transaction
2980
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2981
+  (1.4ms) begin transaction
2982
+ ---------------------------------------------
2983
+ ActAsBackdropTest: test_model_act_as_backdrop
2984
+ ---------------------------------------------
2985
+  (0.2ms) SAVEPOINT active_record_1
2986
+ SQL (18.2ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:23:46.186967"], ["updated_at", "2015-12-18 18:23:46.186967"]]
2987
+  (4.1ms) RELEASE SAVEPOINT active_record_1
2988
+  (0.1ms) SAVEPOINT active_record_1
2989
+ SQL (14.6ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:23:46.224825"], ["id", 980190963]]
2990
+  (1.2ms) RELEASE SAVEPOINT active_record_1
2991
+  (0.2ms) SAVEPOINT active_record_1
2992
+ SQL (0.4ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:23:46.264567"], ["id", 980190963]]
2993
+  (1.4ms) RELEASE SAVEPOINT active_record_1
2994
+  (0.1ms) SAVEPOINT active_record_1
2995
+ SQL (0.5ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:23:46.287274"], ["id", 980190963]]
2996
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2997
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
2998
+  (0.4ms) rollback transaction
2999
+  (0.1ms) begin transaction
3000
+ ------------------------
3001
+ BackdropTest: test_truth
3002
+ ------------------------
3003
+  (0.2ms) rollback transaction
3004
+  (0.1ms) begin transaction
3005
+ ---------------------------------
3006
+ SomethingTest: test_backdrop_test
3007
+ ---------------------------------
3008
+  (0.1ms) SAVEPOINT active_record_1
3009
+ SQL (0.7ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:23:46.301818"], ["updated_at", "2015-12-18 18:23:46.301818"]]
3010
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3011
+  (0.1ms) SAVEPOINT active_record_1
3012
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:23:46.304738"], ["id", 980190963]]
3013
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3014
+  (0.1ms) SAVEPOINT active_record_1
3015
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:23:46.306858"], ["id", 980190963]]
3016
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3017
+  (0.1ms) SAVEPOINT active_record_1
3018
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:23:46.308739"], ["id", 980190963]]
3019
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3020
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3021
+  (0.2ms) rollback transaction
3022
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3023
+  (0.1ms) begin transaction
3024
+ ---------------------------------------------
3025
+ ActAsBackdropTest: test_model_act_as_backdrop
3026
+ ---------------------------------------------
3027
+  (0.1ms) SAVEPOINT active_record_1
3028
+ SQL (1.6ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:24:41.406766"], ["updated_at", "2015-12-18 18:24:41.406766"]]
3029
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3030
+  (0.1ms) SAVEPOINT active_record_1
3031
+ SQL (0.7ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:24:41.414647"], ["id", 980190963]]
3032
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3033
+  (0.1ms) SAVEPOINT active_record_1
3034
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:24:41.422995"], ["id", 980190963]]
3035
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3036
+  (0.1ms) SAVEPOINT active_record_1
3037
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:24:41.425239"], ["id", 980190963]]
3038
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3039
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3040
+  (0.2ms) rollback transaction
3041
+  (0.1ms) begin transaction
3042
+ ---------------------------------
3043
+ SomethingTest: test_backdrop_test
3044
+ ---------------------------------
3045
+  (0.0ms) SAVEPOINT active_record_1
3046
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:24:41.433001"], ["updated_at", "2015-12-18 18:24:41.433001"]]
3047
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3048
+  (0.0ms) SAVEPOINT active_record_1
3049
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:24:41.434033"], ["id", 980190963]]
3050
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3051
+  (0.0ms) SAVEPOINT active_record_1
3052
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:24:41.434950"], ["id", 980190963]]
3053
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3054
+  (0.0ms) SAVEPOINT active_record_1
3055
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:24:41.435825"], ["id", 980190963]]
3056
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3057
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3058
+  (0.1ms) rollback transaction
3059
+  (0.0ms) begin transaction
3060
+ ------------------------
3061
+ BackdropTest: test_truth
3062
+ ------------------------
3063
+  (0.0ms) rollback transaction
3064
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3065
+  (0.1ms) begin transaction
3066
+ ---------------------------------------------
3067
+ ActAsBackdropTest: test_model_act_as_backdrop
3068
+ ---------------------------------------------
3069
+  (0.2ms) SAVEPOINT active_record_1
3070
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:27:09.803227"], ["updated_at", "2015-12-18 18:27:09.803227"]]
3071
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3072
+ [ActiveJob] [BackdropJob] [b034129c-a7f9-4d11-a6be-e13b1329ded6] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:27:09.803Z\"],\"updated_at\":[null,\"2015-12-18T18:27:09.803Z\"],\"id\":[null,980190963]}}"
3073
+ [ActiveJob] [BackdropJob] [b034129c-a7f9-4d11-a6be-e13b1329ded6] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3074
+ [ActiveJob] [BackdropJob] [b034129c-a7f9-4d11-a6be-e13b1329ded6] Performed BackdropJob from Inline(default) in 42.73ms
3075
+ [ActiveJob] Enqueued BackdropJob (Job ID: b034129c-a7f9-4d11-a6be-e13b1329ded6) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:27:09.803Z\"],\"updated_at\":[null,\"2015-12-18T18:27:09.803Z\"],\"id\":[null,980190963]}}"
3076
+  (0.1ms) SAVEPOINT active_record_1
3077
+ SQL (0.5ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:27:09.874645"], ["id", 980190963]]
3078
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3079
+ [ActiveJob] [BackdropJob] [41d1a88d-a811-472c-ab68-483f75834d26] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:27:09.803Z\",\"2015-12-18T18:27:09.874Z\"]}}"
3080
+ [ActiveJob] [BackdropJob] [41d1a88d-a811-472c-ab68-483f75834d26] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3081
+ [ActiveJob] [BackdropJob] [41d1a88d-a811-472c-ab68-483f75834d26]  (0.1ms) SAVEPOINT active_record_1
3082
+ [ActiveJob] [BackdropJob] [41d1a88d-a811-472c-ab68-483f75834d26] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-18 18:27:09.880355"], ["id", 980190963]]
3083
+ [ActiveJob] [BackdropJob] [41d1a88d-a811-472c-ab68-483f75834d26]  (0.1ms) RELEASE SAVEPOINT active_record_1
3084
+ [ActiveJob] [BackdropJob] [41d1a88d-a811-472c-ab68-483f75834d26] Performed BackdropJob from Inline(default) in 4.08ms
3085
+ [ActiveJob] Enqueued BackdropJob (Job ID: 41d1a88d-a811-472c-ab68-483f75834d26) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:27:09.803Z\",\"2015-12-18T18:27:09.874Z\"]}}"
3086
+  (0.1ms) SAVEPOINT active_record_1
3087
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:27:09.883434"], ["id", 980190963]]
3088
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3089
+ [ActiveJob] [BackdropJob] [645307a6-a6de-4938-bd45-d5eec951013d] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:27:09.874Z\",\"2015-12-18T18:27:09.883Z\"]}}"
3090
+ [ActiveJob] [BackdropJob] [645307a6-a6de-4938-bd45-d5eec951013d] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3091
+ [ActiveJob] [BackdropJob] [645307a6-a6de-4938-bd45-d5eec951013d]  (0.1ms) SAVEPOINT active_record_1
3092
+ [ActiveJob] [BackdropJob] [645307a6-a6de-4938-bd45-d5eec951013d] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "def"], ["updated_at", "2015-12-18 18:27:09.886050"], ["id", 980190963]]
3093
+ [ActiveJob] [BackdropJob] [645307a6-a6de-4938-bd45-d5eec951013d]  (0.0ms) RELEASE SAVEPOINT active_record_1
3094
+ [ActiveJob] [BackdropJob] [645307a6-a6de-4938-bd45-d5eec951013d] Performed BackdropJob from Inline(default) in 1.76ms
3095
+ [ActiveJob] Enqueued BackdropJob (Job ID: 645307a6-a6de-4938-bd45-d5eec951013d) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:27:09.874Z\",\"2015-12-18T18:27:09.883Z\"]}}"
3096
+  (0.0ms) SAVEPOINT active_record_1
3097
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:27:09.887255"], ["id", 980190963]]
3098
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3099
+ [ActiveJob] [BackdropJob] [8953461d-870b-4e0a-961b-09a18ecff957] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:27:09.883Z\",\"2015-12-18T18:27:09.887Z\"]}}"
3100
+ [ActiveJob] [BackdropJob] [8953461d-870b-4e0a-961b-09a18ecff957] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3101
+ [ActiveJob] [BackdropJob] [8953461d-870b-4e0a-961b-09a18ecff957]  (0.0ms) SAVEPOINT active_record_1
3102
+ [ActiveJob] [BackdropJob] [8953461d-870b-4e0a-961b-09a18ecff957] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "something better"], ["updated_at", "2015-12-18 18:27:09.889219"], ["id", 980190963]]
3103
+ [ActiveJob] [BackdropJob] [8953461d-870b-4e0a-961b-09a18ecff957]  (0.1ms) RELEASE SAVEPOINT active_record_1
3104
+ [ActiveJob] [BackdropJob] [8953461d-870b-4e0a-961b-09a18ecff957] Performed BackdropJob from Inline(default) in 1.64ms
3105
+ [ActiveJob] Enqueued BackdropJob (Job ID: 8953461d-870b-4e0a-961b-09a18ecff957) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:27:09.883Z\",\"2015-12-18T18:27:09.887Z\"]}}"
3106
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3107
+  (0.1ms) rollback transaction
3108
+  (0.1ms) begin transaction
3109
+ ---------------------------------
3110
+ SomethingTest: test_backdrop_test
3111
+ ---------------------------------
3112
+  (0.0ms) SAVEPOINT active_record_1
3113
+ SQL (0.2ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:27:09.892160"], ["updated_at", "2015-12-18 18:27:09.892160"]]
3114
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3115
+  (0.0ms) SAVEPOINT active_record_1
3116
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:27:09.893237"], ["id", 980190963]]
3117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3118
+  (0.0ms) SAVEPOINT active_record_1
3119
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:27:09.894177"], ["id", 980190963]]
3120
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3121
+  (0.0ms) SAVEPOINT active_record_1
3122
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:27:09.895042"], ["id", 980190963]]
3123
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3124
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3125
+  (0.1ms) rollback transaction
3126
+  (0.1ms) begin transaction
3127
+ ------------------------
3128
+ BackdropTest: test_truth
3129
+ ------------------------
3130
+  (0.0ms) rollback transaction
3131
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3132
+  (0.1ms) begin transaction
3133
+ ------------------------
3134
+ BackdropTest: test_truth
3135
+ ------------------------
3136
+  (0.4ms) rollback transaction
3137
+  (0.0ms) begin transaction
3138
+ ---------------------------------------------
3139
+ ActAsBackdropTest: test_model_act_as_backdrop
3140
+ ---------------------------------------------
3141
+  (0.1ms) SAVEPOINT active_record_1
3142
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:27:56.888092"], ["updated_at", "2015-12-18 18:27:56.888092"]]
3143
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3144
+ [ActiveJob] [BackdropJob] [ae7e21ad-3499-4625-99c6-5cb6adf2dc10] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:27:56.888Z\"],\"updated_at\":[null,\"2015-12-18T18:27:56.888Z\"],\"id\":[null,980190963]}}"
3145
+ [ActiveJob] [BackdropJob] [ae7e21ad-3499-4625-99c6-5cb6adf2dc10] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3146
+ [ActiveJob] [BackdropJob] [ae7e21ad-3499-4625-99c6-5cb6adf2dc10] Performed BackdropJob from Inline(default) in 6.76ms
3147
+ [ActiveJob] Enqueued BackdropJob (Job ID: ae7e21ad-3499-4625-99c6-5cb6adf2dc10) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:27:56.888Z\"],\"updated_at\":[null,\"2015-12-18T18:27:56.888Z\"],\"id\":[null,980190963]}}"
3148
+  (0.0ms) SAVEPOINT active_record_1
3149
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:27:56.900177"], ["id", 980190963]]
3150
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3151
+ [ActiveJob] [BackdropJob] [76595722-cc4b-4b0c-894f-62ca049faa2c] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:27:56.888Z\",\"2015-12-18T18:27:56.900Z\"]}}"
3152
+ [ActiveJob] [BackdropJob] [76595722-cc4b-4b0c-894f-62ca049faa2c] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3153
+ [ActiveJob] [BackdropJob] [76595722-cc4b-4b0c-894f-62ca049faa2c]  (0.0ms) SAVEPOINT active_record_1
3154
+ [ActiveJob] [BackdropJob] [76595722-cc4b-4b0c-894f-62ca049faa2c] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-18 18:27:56.902985"], ["id", 980190963]]
3155
+ [ActiveJob] [BackdropJob] [76595722-cc4b-4b0c-894f-62ca049faa2c]  (0.0ms) RELEASE SAVEPOINT active_record_1
3156
+ [ActiveJob] [BackdropJob] [76595722-cc4b-4b0c-894f-62ca049faa2c] Performed BackdropJob from Inline(default) in 1.93ms
3157
+ [ActiveJob] Enqueued BackdropJob (Job ID: 76595722-cc4b-4b0c-894f-62ca049faa2c) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:27:56.888Z\",\"2015-12-18T18:27:56.900Z\"]}}"
3158
+  (0.0ms) SAVEPOINT active_record_1
3159
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:27:56.904431"], ["id", 980190963]]
3160
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3161
+ [ActiveJob] [BackdropJob] [a452cea5-d0b4-4cc0-a208-f9cd6b61167b] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:27:56.900Z\",\"2015-12-18T18:27:56.904Z\"]}}"
3162
+ [ActiveJob] [BackdropJob] [a452cea5-d0b4-4cc0-a208-f9cd6b61167b] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3163
+ [ActiveJob] [BackdropJob] [a452cea5-d0b4-4cc0-a208-f9cd6b61167b]  (0.0ms) SAVEPOINT active_record_1
3164
+ [ActiveJob] [BackdropJob] [a452cea5-d0b4-4cc0-a208-f9cd6b61167b] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "def"], ["updated_at", "2015-12-18 18:27:56.906321"], ["id", 980190963]]
3165
+ [ActiveJob] [BackdropJob] [a452cea5-d0b4-4cc0-a208-f9cd6b61167b]  (0.1ms) RELEASE SAVEPOINT active_record_1
3166
+ [ActiveJob] [BackdropJob] [a452cea5-d0b4-4cc0-a208-f9cd6b61167b] Performed BackdropJob from Inline(default) in 1.67ms
3167
+ [ActiveJob] Enqueued BackdropJob (Job ID: a452cea5-d0b4-4cc0-a208-f9cd6b61167b) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:27:56.900Z\",\"2015-12-18T18:27:56.904Z\"]}}"
3168
+  (0.0ms) SAVEPOINT active_record_1
3169
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:27:56.907600"], ["id", 980190963]]
3170
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3171
+ [ActiveJob] [BackdropJob] [1849077d-835d-454f-b84e-14f333bf094a] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:27:56.904Z\",\"2015-12-18T18:27:56.907Z\"]}}"
3172
+ [ActiveJob] [BackdropJob] [1849077d-835d-454f-b84e-14f333bf094a] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3173
+ [ActiveJob] [BackdropJob] [1849077d-835d-454f-b84e-14f333bf094a]  (0.0ms) SAVEPOINT active_record_1
3174
+ [ActiveJob] [BackdropJob] [1849077d-835d-454f-b84e-14f333bf094a] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "something better"], ["updated_at", "2015-12-18 18:27:56.909596"], ["id", 980190963]]
3175
+ [ActiveJob] [BackdropJob] [1849077d-835d-454f-b84e-14f333bf094a]  (0.0ms) RELEASE SAVEPOINT active_record_1
3176
+ [ActiveJob] [BackdropJob] [1849077d-835d-454f-b84e-14f333bf094a] Performed BackdropJob from Inline(default) in 1.72ms
3177
+ [ActiveJob] Enqueued BackdropJob (Job ID: 1849077d-835d-454f-b84e-14f333bf094a) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:27:56.904Z\",\"2015-12-18T18:27:56.907Z\"]}}"
3178
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3179
+  (0.1ms) rollback transaction
3180
+  (0.1ms) begin transaction
3181
+ ---------------------------------
3182
+ SomethingTest: test_backdrop_test
3183
+ ---------------------------------
3184
+  (0.0ms) SAVEPOINT active_record_1
3185
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:27:56.912189"], ["updated_at", "2015-12-18 18:27:56.912189"]]
3186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3187
+  (0.0ms) SAVEPOINT active_record_1
3188
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:27:56.913305"], ["id", 980190963]]
3189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3190
+  (0.0ms) SAVEPOINT active_record_1
3191
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:27:56.914221"], ["id", 980190963]]
3192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3193
+  (0.0ms) SAVEPOINT active_record_1
3194
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:27:56.915115"], ["id", 980190963]]
3195
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3196
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3197
+  (0.1ms) rollback transaction
3198
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3199
+  (0.1ms) begin transaction
3200
+ ---------------------------------
3201
+ SomethingTest: test_backdrop_test
3202
+ ---------------------------------
3203
+  (0.1ms) SAVEPOINT active_record_1
3204
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:29:08.921622"], ["updated_at", "2015-12-18 18:29:08.921622"]]
3205
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3206
+  (0.0ms) SAVEPOINT active_record_1
3207
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:29:08.924477"], ["id", 980190963]]
3208
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3209
+  (0.0ms) SAVEPOINT active_record_1
3210
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:29:08.927552"], ["id", 980190963]]
3211
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3212
+  (0.0ms) SAVEPOINT active_record_1
3213
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:29:08.928606"], ["id", 980190963]]
3214
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3215
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3216
+  (0.1ms) rollback transaction
3217
+  (0.2ms) begin transaction
3218
+ ------------------------
3219
+ BackdropTest: test_truth
3220
+ ------------------------
3221
+  (0.0ms) rollback transaction
3222
+  (0.1ms) begin transaction
3223
+ ---------------------------------------------
3224
+ ActAsBackdropTest: test_model_act_as_backdrop
3225
+ ---------------------------------------------
3226
+  (0.1ms) SAVEPOINT active_record_1
3227
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:29:08.932845"], ["updated_at", "2015-12-18 18:29:08.932845"]]
3228
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3229
+ [ActiveJob] [BackdropJob] [247802ec-1389-487e-b751-f65b0fa3b05f] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:29:08.932Z\"],\"updated_at\":[null,\"2015-12-18T18:29:08.932Z\"],\"id\":[null,980190963]}}"
3230
+ [ActiveJob] [BackdropJob] [247802ec-1389-487e-b751-f65b0fa3b05f] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3231
+ [ActiveJob] [BackdropJob] [247802ec-1389-487e-b751-f65b0fa3b05f] Performed BackdropJob from Inline(default) in 4.58ms
3232
+ [ActiveJob] Enqueued BackdropJob (Job ID: 247802ec-1389-487e-b751-f65b0fa3b05f) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:29:08.932Z\"],\"updated_at\":[null,\"2015-12-18T18:29:08.932Z\"],\"id\":[null,980190963]}}"
3233
+  (0.1ms) SAVEPOINT active_record_1
3234
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:29:08.941320"], ["id", 980190963]]
3235
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3236
+ [ActiveJob] [BackdropJob] [18211d01-924d-4051-b298-d39f0d7fdee6] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:29:08.932Z\",\"2015-12-18T18:29:08.941Z\"]}}"
3237
+ [ActiveJob] [BackdropJob] [18211d01-924d-4051-b298-d39f0d7fdee6] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3238
+ [ActiveJob] [BackdropJob] [18211d01-924d-4051-b298-d39f0d7fdee6]  (0.0ms) SAVEPOINT active_record_1
3239
+ [ActiveJob] [BackdropJob] [18211d01-924d-4051-b298-d39f0d7fdee6] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-18 18:29:08.943748"], ["id", 980190963]]
3240
+ [ActiveJob] [BackdropJob] [18211d01-924d-4051-b298-d39f0d7fdee6]  (0.1ms) RELEASE SAVEPOINT active_record_1
3241
+ [ActiveJob] [BackdropJob] [18211d01-924d-4051-b298-d39f0d7fdee6] Performed BackdropJob from Inline(default) in 2.03ms
3242
+ [ActiveJob] Enqueued BackdropJob (Job ID: 18211d01-924d-4051-b298-d39f0d7fdee6) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:29:08.932Z\",\"2015-12-18T18:29:08.941Z\"]}}"
3243
+  (0.0ms) SAVEPOINT active_record_1
3244
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:29:08.945222"], ["id", 980190963]]
3245
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3246
+ [ActiveJob] [BackdropJob] [c9474a3f-6d49-4292-95e1-fddb9d525ed2] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:29:08.941Z\",\"2015-12-18T18:29:08.945Z\"]}}"
3247
+ [ActiveJob] [BackdropJob] [c9474a3f-6d49-4292-95e1-fddb9d525ed2] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3248
+ [ActiveJob] [BackdropJob] [c9474a3f-6d49-4292-95e1-fddb9d525ed2]  (0.0ms) SAVEPOINT active_record_1
3249
+ [ActiveJob] [BackdropJob] [c9474a3f-6d49-4292-95e1-fddb9d525ed2] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "def"], ["updated_at", "2015-12-18 18:29:08.947242"], ["id", 980190963]]
3250
+ [ActiveJob] [BackdropJob] [c9474a3f-6d49-4292-95e1-fddb9d525ed2]  (0.1ms) RELEASE SAVEPOINT active_record_1
3251
+ [ActiveJob] [BackdropJob] [c9474a3f-6d49-4292-95e1-fddb9d525ed2] Performed BackdropJob from Inline(default) in 1.79ms
3252
+ [ActiveJob] Enqueued BackdropJob (Job ID: c9474a3f-6d49-4292-95e1-fddb9d525ed2) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:29:08.941Z\",\"2015-12-18T18:29:08.945Z\"]}}"
3253
+  (0.0ms) SAVEPOINT active_record_1
3254
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:29:08.948655"], ["id", 980190963]]
3255
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3256
+ [ActiveJob] [BackdropJob] [3f65dc0f-48ed-4155-938f-f0dc6ea9e4f8] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:29:08.945Z\",\"2015-12-18T18:29:08.948Z\"]}}"
3257
+ [ActiveJob] [BackdropJob] [3f65dc0f-48ed-4155-938f-f0dc6ea9e4f8] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3258
+ [ActiveJob] [BackdropJob] [3f65dc0f-48ed-4155-938f-f0dc6ea9e4f8]  (0.0ms) SAVEPOINT active_record_1
3259
+ [ActiveJob] [BackdropJob] [3f65dc0f-48ed-4155-938f-f0dc6ea9e4f8] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "something better"], ["updated_at", "2015-12-18 18:29:08.951863"], ["id", 980190963]]
3260
+ [ActiveJob] [BackdropJob] [3f65dc0f-48ed-4155-938f-f0dc6ea9e4f8]  (0.0ms) RELEASE SAVEPOINT active_record_1
3261
+ [ActiveJob] [BackdropJob] [3f65dc0f-48ed-4155-938f-f0dc6ea9e4f8] Performed BackdropJob from Inline(default) in 2.45ms
3262
+ [ActiveJob] Enqueued BackdropJob (Job ID: 3f65dc0f-48ed-4155-938f-f0dc6ea9e4f8) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:29:08.945Z\",\"2015-12-18T18:29:08.948Z\"]}}"
3263
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3264
+  (0.1ms) rollback transaction
3265
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3266
+  (0.1ms) begin transaction
3267
+ ------------------------
3268
+ BackdropTest: test_truth
3269
+ ------------------------
3270
+  (0.1ms) rollback transaction
3271
+  (0.1ms) begin transaction
3272
+ ---------------------------------------------
3273
+ ActAsBackdropTest: test_model_act_as_backdrop
3274
+ ---------------------------------------------
3275
+  (0.2ms) SAVEPOINT active_record_1
3276
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:29:46.711072"], ["updated_at", "2015-12-18 18:29:46.711072"]]
3277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3278
+ [ActiveJob] [BackdropJob] [9aa8e8ae-63c8-4f7f-9744-c8206a320879] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:29:46.711Z\"],\"updated_at\":[null,\"2015-12-18T18:29:46.711Z\"],\"id\":[null,980190963]}}"
3279
+ [ActiveJob] [BackdropJob] [9aa8e8ae-63c8-4f7f-9744-c8206a320879] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3280
+ [ActiveJob] [BackdropJob] [9aa8e8ae-63c8-4f7f-9744-c8206a320879] Performed BackdropJob from Inline(default) in 6.82ms
3281
+ [ActiveJob] Enqueued BackdropJob (Job ID: 9aa8e8ae-63c8-4f7f-9744-c8206a320879) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:29:46.711Z\"],\"updated_at\":[null,\"2015-12-18T18:29:46.711Z\"],\"id\":[null,980190963]}}"
3282
+  (0.0ms) SAVEPOINT active_record_1
3283
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:29:46.723843"], ["id", 980190963]]
3284
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3285
+ [ActiveJob] [BackdropJob] [65f8afd3-43ec-4f22-b62b-5689d6e66631] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:29:46.711Z\",\"2015-12-18T18:29:46.723Z\"]}}"
3286
+ [ActiveJob] [BackdropJob] [65f8afd3-43ec-4f22-b62b-5689d6e66631] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3287
+ [ActiveJob] [BackdropJob] [65f8afd3-43ec-4f22-b62b-5689d6e66631]  (0.0ms) SAVEPOINT active_record_1
3288
+ [ActiveJob] [BackdropJob] [65f8afd3-43ec-4f22-b62b-5689d6e66631] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-18 18:29:46.726391"], ["id", 980190963]]
3289
+ [ActiveJob] [BackdropJob] [65f8afd3-43ec-4f22-b62b-5689d6e66631]  (0.1ms) RELEASE SAVEPOINT active_record_1
3290
+ [ActiveJob] [BackdropJob] [65f8afd3-43ec-4f22-b62b-5689d6e66631] Performed BackdropJob from Inline(default) in 1.93ms
3291
+ [ActiveJob] Enqueued BackdropJob (Job ID: 65f8afd3-43ec-4f22-b62b-5689d6e66631) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:29:46.711Z\",\"2015-12-18T18:29:46.723Z\"]}}"
3292
+  (0.0ms) SAVEPOINT active_record_1
3293
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:29:46.727830"], ["id", 980190963]]
3294
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3295
+ [ActiveJob] [BackdropJob] [73199cd9-ccaa-4a54-b92e-7cf1c7fea341] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:29:46.723Z\",\"2015-12-18T18:29:46.727Z\"]}}"
3296
+ [ActiveJob] [BackdropJob] [73199cd9-ccaa-4a54-b92e-7cf1c7fea341] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3297
+ [ActiveJob] [BackdropJob] [73199cd9-ccaa-4a54-b92e-7cf1c7fea341]  (0.0ms) SAVEPOINT active_record_1
3298
+ [ActiveJob] [BackdropJob] [73199cd9-ccaa-4a54-b92e-7cf1c7fea341] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "def"], ["updated_at", "2015-12-18 18:29:46.729856"], ["id", 980190963]]
3299
+ [ActiveJob] [BackdropJob] [73199cd9-ccaa-4a54-b92e-7cf1c7fea341]  (0.0ms) RELEASE SAVEPOINT active_record_1
3300
+ [ActiveJob] [BackdropJob] [73199cd9-ccaa-4a54-b92e-7cf1c7fea341] Performed BackdropJob from Inline(default) in 1.71ms
3301
+ [ActiveJob] Enqueued BackdropJob (Job ID: 73199cd9-ccaa-4a54-b92e-7cf1c7fea341) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:29:46.723Z\",\"2015-12-18T18:29:46.727Z\"]}}"
3302
+  (0.0ms) SAVEPOINT active_record_1
3303
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:29:46.731053"], ["id", 980190963]]
3304
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3305
+ [ActiveJob] [BackdropJob] [41e54c67-fdf2-4256-9db4-318f0c00a6d8] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:29:46.727Z\",\"2015-12-18T18:29:46.731Z\"]}}"
3306
+ [ActiveJob] [BackdropJob] [41e54c67-fdf2-4256-9db4-318f0c00a6d8] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3307
+ [ActiveJob] [BackdropJob] [41e54c67-fdf2-4256-9db4-318f0c00a6d8]  (0.0ms) SAVEPOINT active_record_1
3308
+ [ActiveJob] [BackdropJob] [41e54c67-fdf2-4256-9db4-318f0c00a6d8] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "something better"], ["updated_at", "2015-12-18 18:29:46.732999"], ["id", 980190963]]
3309
+ [ActiveJob] [BackdropJob] [41e54c67-fdf2-4256-9db4-318f0c00a6d8]  (0.0ms) RELEASE SAVEPOINT active_record_1
3310
+ [ActiveJob] [BackdropJob] [41e54c67-fdf2-4256-9db4-318f0c00a6d8] Performed BackdropJob from Inline(default) in 1.8ms
3311
+ [ActiveJob] Enqueued BackdropJob (Job ID: 41e54c67-fdf2-4256-9db4-318f0c00a6d8) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:29:46.727Z\",\"2015-12-18T18:29:46.731Z\"]}}"
3312
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" ORDER BY "somethings"."id" DESC LIMIT 1
3313
+  (0.1ms) rollback transaction
3314
+  (0.1ms) begin transaction
3315
+ ---------------------------------
3316
+ SomethingTest: test_backdrop_test
3317
+ ---------------------------------
3318
+  (0.0ms) SAVEPOINT active_record_1
3319
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:29:46.735907"], ["updated_at", "2015-12-18 18:29:46.735907"]]
3320
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3321
+  (0.0ms) SAVEPOINT active_record_1
3322
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:29:46.736963"], ["id", 980190963]]
3323
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3324
+  (0.0ms) SAVEPOINT active_record_1
3325
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:29:46.737862"], ["id", 980190963]]
3326
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3327
+  (0.0ms) SAVEPOINT active_record_1
3328
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:29:46.738752"], ["id", 980190963]]
3329
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3330
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3331
+  (0.1ms) rollback transaction
3332
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3333
+  (0.1ms) begin transaction
3334
+ ---------------------------------
3335
+ SomethingTest: test_backdrop_test
3336
+ ---------------------------------
3337
+  (0.1ms) SAVEPOINT active_record_1
3338
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:30:13.976594"], ["updated_at", "2015-12-18 18:30:13.976594"]]
3339
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3340
+  (0.0ms) SAVEPOINT active_record_1
3341
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:30:13.980121"], ["id", 980190963]]
3342
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3343
+  (0.0ms) SAVEPOINT active_record_1
3344
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:30:13.983896"], ["id", 980190963]]
3345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3346
+  (0.0ms) SAVEPOINT active_record_1
3347
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:30:13.985007"], ["id", 980190963]]
3348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3349
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3350
+  (0.1ms) rollback transaction
3351
+  (0.0ms) begin transaction
3352
+ ------------------------
3353
+ BackdropTest: test_truth
3354
+ ------------------------
3355
+  (0.0ms) rollback transaction
3356
+  (0.0ms) begin transaction
3357
+ ---------------------------------------------
3358
+ ActAsBackdropTest: test_model_act_as_backdrop
3359
+ ---------------------------------------------
3360
+  (0.0ms) SAVEPOINT active_record_1
3361
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:30:13.990210"], ["updated_at", "2015-12-18 18:30:13.990210"]]
3362
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3363
+ [ActiveJob] [BackdropJob] [4aebed12-b54e-48ff-92a5-d65a743ff841] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:30:13.990Z\"],\"updated_at\":[null,\"2015-12-18T18:30:13.990Z\"],\"id\":[null,980190963]}}"
3364
+ [ActiveJob] [BackdropJob] [4aebed12-b54e-48ff-92a5-d65a743ff841] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3365
+ [ActiveJob] [BackdropJob] [4aebed12-b54e-48ff-92a5-d65a743ff841] Performed BackdropJob from Inline(default) in 5.19ms
3366
+ [ActiveJob] Enqueued BackdropJob (Job ID: 4aebed12-b54e-48ff-92a5-d65a743ff841) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:30:13.990Z\"],\"updated_at\":[null,\"2015-12-18T18:30:13.990Z\"],\"id\":[null,980190963]}}"
3367
+  (0.0ms) SAVEPOINT active_record_1
3368
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:30:13.999142"], ["id", 980190963]]
3369
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3370
+ [ActiveJob] [BackdropJob] [8776ff22-f4e1-4a6b-a746-6cbc4e619ed9] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:30:13.990Z\",\"2015-12-18T18:30:13.999Z\"]}}"
3371
+ [ActiveJob] [BackdropJob] [8776ff22-f4e1-4a6b-a746-6cbc4e619ed9] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3372
+ [ActiveJob] [BackdropJob] [8776ff22-f4e1-4a6b-a746-6cbc4e619ed9]  (0.0ms) SAVEPOINT active_record_1
3373
+ [ActiveJob] [BackdropJob] [8776ff22-f4e1-4a6b-a746-6cbc4e619ed9] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-18 18:30:14.001939"], ["id", 980190963]]
3374
+ [ActiveJob] [BackdropJob] [8776ff22-f4e1-4a6b-a746-6cbc4e619ed9]  (0.0ms) RELEASE SAVEPOINT active_record_1
3375
+ [ActiveJob] [BackdropJob] [8776ff22-f4e1-4a6b-a746-6cbc4e619ed9] Performed BackdropJob from Inline(default) in 2.09ms
3376
+ [ActiveJob] Enqueued BackdropJob (Job ID: 8776ff22-f4e1-4a6b-a746-6cbc4e619ed9) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:30:13.990Z\",\"2015-12-18T18:30:13.999Z\"]}}"
3377
+  (0.3ms) SAVEPOINT active_record_1
3378
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:30:14.003879"], ["id", 980190963]]
3379
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3380
+ [ActiveJob] [BackdropJob] [993a3ee8-d1e3-4b62-bc1d-4a81208b7c85] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:30:13.999Z\",\"2015-12-18T18:30:14.003Z\"]}}"
3381
+ [ActiveJob] [BackdropJob] [993a3ee8-d1e3-4b62-bc1d-4a81208b7c85] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3382
+ [ActiveJob] [BackdropJob] [993a3ee8-d1e3-4b62-bc1d-4a81208b7c85]  (0.0ms) SAVEPOINT active_record_1
3383
+ [ActiveJob] [BackdropJob] [993a3ee8-d1e3-4b62-bc1d-4a81208b7c85] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "def"], ["updated_at", "2015-12-18 18:30:14.006269"], ["id", 980190963]]
3384
+ [ActiveJob] [BackdropJob] [993a3ee8-d1e3-4b62-bc1d-4a81208b7c85]  (0.0ms) RELEASE SAVEPOINT active_record_1
3385
+ [ActiveJob] [BackdropJob] [993a3ee8-d1e3-4b62-bc1d-4a81208b7c85] Performed BackdropJob from Inline(default) in 2.27ms
3386
+ [ActiveJob] Enqueued BackdropJob (Job ID: 993a3ee8-d1e3-4b62-bc1d-4a81208b7c85) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:30:13.999Z\",\"2015-12-18T18:30:14.003Z\"]}}"
3387
+  (0.0ms) SAVEPOINT active_record_1
3388
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:30:14.007834"], ["id", 980190963]]
3389
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3390
+ [ActiveJob] [BackdropJob] [76df7134-a0e4-4b35-9060-dae8ceec407e] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:30:14.003Z\",\"2015-12-18T18:30:14.007Z\"]}}"
3391
+ [ActiveJob] [BackdropJob] [76df7134-a0e4-4b35-9060-dae8ceec407e] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3392
+ [ActiveJob] [BackdropJob] [76df7134-a0e4-4b35-9060-dae8ceec407e]  (0.0ms) SAVEPOINT active_record_1
3393
+ [ActiveJob] [BackdropJob] [76df7134-a0e4-4b35-9060-dae8ceec407e] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "something better"], ["updated_at", "2015-12-18 18:30:14.010455"], ["id", 980190963]]
3394
+ [ActiveJob] [BackdropJob] [76df7134-a0e4-4b35-9060-dae8ceec407e]  (0.0ms) RELEASE SAVEPOINT active_record_1
3395
+ [ActiveJob] [BackdropJob] [76df7134-a0e4-4b35-9060-dae8ceec407e] Performed BackdropJob from Inline(default) in 2.38ms
3396
+ [ActiveJob] Enqueued BackdropJob (Job ID: 76df7134-a0e4-4b35-9060-dae8ceec407e) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:30:14.003Z\",\"2015-12-18T18:30:14.007Z\"]}}"
3397
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" ORDER BY "somethings"."id" DESC LIMIT 1
3398
+  (0.5ms) rollback transaction
3399
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3400
+  (0.1ms) begin transaction
3401
+ ------------------------
3402
+ BackdropTest: test_truth
3403
+ ------------------------
3404
+  (0.1ms) rollback transaction
3405
+  (0.1ms) begin transaction
3406
+ ---------------------------------------------
3407
+ ActAsBackdropTest: test_model_act_as_backdrop
3408
+ ---------------------------------------------
3409
+  (0.1ms) SAVEPOINT active_record_1
3410
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:30:35.032598"], ["updated_at", "2015-12-18 18:30:35.032598"]]
3411
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3412
+ [ActiveJob] [BackdropJob] [5f12ec31-6b57-4b39-b81a-34cd0622a10a] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:30:35.032Z\"],\"updated_at\":[null,\"2015-12-18T18:30:35.032Z\"],\"id\":[null,980190963]}}"
3413
+ [ActiveJob] [BackdropJob] [5f12ec31-6b57-4b39-b81a-34cd0622a10a] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3414
+ [ActiveJob] [BackdropJob] [5f12ec31-6b57-4b39-b81a-34cd0622a10a] Performed BackdropJob from Inline(default) in 6.66ms
3415
+ [ActiveJob] Enqueued BackdropJob (Job ID: 5f12ec31-6b57-4b39-b81a-34cd0622a10a) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:30:35.032Z\"],\"updated_at\":[null,\"2015-12-18T18:30:35.032Z\"],\"id\":[null,980190963]}}"
3416
+  (0.0ms) SAVEPOINT active_record_1
3417
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:30:35.044375"], ["id", 980190963]]
3418
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3419
+ [ActiveJob] [BackdropJob] [d9dead91-52b2-4151-a247-2150c40a2418] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:30:35.032Z\",\"2015-12-18T18:30:35.044Z\"]}}"
3420
+ [ActiveJob] [BackdropJob] [d9dead91-52b2-4151-a247-2150c40a2418] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3421
+ [ActiveJob] [BackdropJob] [d9dead91-52b2-4151-a247-2150c40a2418]  (0.1ms) SAVEPOINT active_record_1
3422
+ [ActiveJob] [BackdropJob] [d9dead91-52b2-4151-a247-2150c40a2418] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-18 18:30:35.047105"], ["id", 980190963]]
3423
+ [ActiveJob] [BackdropJob] [d9dead91-52b2-4151-a247-2150c40a2418]  (0.0ms) RELEASE SAVEPOINT active_record_1
3424
+ [ActiveJob] [BackdropJob] [d9dead91-52b2-4151-a247-2150c40a2418] Performed BackdropJob from Inline(default) in 2.02ms
3425
+ [ActiveJob] Enqueued BackdropJob (Job ID: d9dead91-52b2-4151-a247-2150c40a2418) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:30:35.032Z\",\"2015-12-18T18:30:35.044Z\"]}}"
3426
+  (0.0ms) SAVEPOINT active_record_1
3427
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:30:35.048566"], ["id", 980190963]]
3428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3429
+ [ActiveJob] [BackdropJob] [dca7131e-b70c-464c-9947-5a75762f7a2c] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:30:35.044Z\",\"2015-12-18T18:30:35.048Z\"]}}"
3430
+ [ActiveJob] [BackdropJob] [dca7131e-b70c-464c-9947-5a75762f7a2c] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3431
+ [ActiveJob] [BackdropJob] [dca7131e-b70c-464c-9947-5a75762f7a2c]  (0.0ms) SAVEPOINT active_record_1
3432
+ [ActiveJob] [BackdropJob] [dca7131e-b70c-464c-9947-5a75762f7a2c] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "def"], ["updated_at", "2015-12-18 18:30:35.050540"], ["id", 980190963]]
3433
+ [ActiveJob] [BackdropJob] [dca7131e-b70c-464c-9947-5a75762f7a2c]  (0.0ms) RELEASE SAVEPOINT active_record_1
3434
+ [ActiveJob] [BackdropJob] [dca7131e-b70c-464c-9947-5a75762f7a2c] Performed BackdropJob from Inline(default) in 1.67ms
3435
+ [ActiveJob] Enqueued BackdropJob (Job ID: dca7131e-b70c-464c-9947-5a75762f7a2c) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:30:35.044Z\",\"2015-12-18T18:30:35.048Z\"]}}"
3436
+  (0.0ms) SAVEPOINT active_record_1
3437
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:30:35.051848"], ["id", 980190963]]
3438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3439
+ [ActiveJob] [BackdropJob] [6b236b52-1ea4-482c-9b36-abd3dd52f273] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:30:35.048Z\",\"2015-12-18T18:30:35.051Z\"]}}"
3440
+ [ActiveJob] [BackdropJob] [6b236b52-1ea4-482c-9b36-abd3dd52f273] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3441
+ [ActiveJob] [BackdropJob] [6b236b52-1ea4-482c-9b36-abd3dd52f273]  (0.0ms) SAVEPOINT active_record_1
3442
+ [ActiveJob] [BackdropJob] [6b236b52-1ea4-482c-9b36-abd3dd52f273] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "something better"], ["updated_at", "2015-12-18 18:30:35.053858"], ["id", 980190963]]
3443
+ [ActiveJob] [BackdropJob] [6b236b52-1ea4-482c-9b36-abd3dd52f273]  (0.0ms) RELEASE SAVEPOINT active_record_1
3444
+ [ActiveJob] [BackdropJob] [6b236b52-1ea4-482c-9b36-abd3dd52f273] Performed BackdropJob from Inline(default) in 1.77ms
3445
+ [ActiveJob] Enqueued BackdropJob (Job ID: 6b236b52-1ea4-482c-9b36-abd3dd52f273) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:30:35.048Z\",\"2015-12-18T18:30:35.051Z\"]}}"
3446
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" ORDER BY "somethings"."id" DESC LIMIT 1
3447
+  (0.1ms) rollback transaction
3448
+  (0.0ms) begin transaction
3449
+ ---------------------------------
3450
+ SomethingTest: test_backdrop_test
3451
+ ---------------------------------
3452
+  (0.0ms) SAVEPOINT active_record_1
3453
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:30:35.056397"], ["updated_at", "2015-12-18 18:30:35.056397"]]
3454
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3455
+  (0.0ms) SAVEPOINT active_record_1
3456
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:30:35.057484"], ["id", 980190963]]
3457
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3458
+  (0.0ms) SAVEPOINT active_record_1
3459
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:30:35.058399"], ["id", 980190963]]
3460
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3461
+  (0.0ms) SAVEPOINT active_record_1
3462
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:30:35.059264"], ["id", 980190963]]
3463
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3464
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3465
+  (0.1ms) rollback transaction
3466
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3467
+  (0.3ms) begin transaction
3468
+ ---------------------------------------------
3469
+ ActAsBackdropTest: test_model_act_as_backdrop
3470
+ ---------------------------------------------
3471
+  (0.1ms) SAVEPOINT active_record_1
3472
+ SQL (0.2ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:31:52.980981"], ["updated_at", "2015-12-18 18:31:52.980981"]]
3473
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3474
+ [ActiveJob] [BackdropJob] [dfb2d871-e335-4ef6-b50e-ea728cb1b2b2] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:31:52.980Z\"],\"updated_at\":[null,\"2015-12-18T18:31:52.980Z\"],\"id\":[null,980190963]}}"
3475
+ [ActiveJob] [BackdropJob] [dfb2d871-e335-4ef6-b50e-ea728cb1b2b2] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3476
+ [ActiveJob] [BackdropJob] [dfb2d871-e335-4ef6-b50e-ea728cb1b2b2] Performed BackdropJob from Inline(default) in 6.8ms
3477
+ [ActiveJob] Enqueued BackdropJob (Job ID: dfb2d871-e335-4ef6-b50e-ea728cb1b2b2) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:31:52.980Z\"],\"updated_at\":[null,\"2015-12-18T18:31:52.980Z\"],\"id\":[null,980190963]}}"
3478
+  (0.0ms) SAVEPOINT active_record_1
3479
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:31:52.993049"], ["id", 980190963]]
3480
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3481
+ [ActiveJob] [BackdropJob] [b72031f3-483b-4d38-8977-f714187e8aa2] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:31:52.980Z\",\"2015-12-18T18:31:52.993Z\"]}}"
3482
+ [ActiveJob] [BackdropJob] [b72031f3-483b-4d38-8977-f714187e8aa2] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3483
+ [ActiveJob] [BackdropJob] [b72031f3-483b-4d38-8977-f714187e8aa2] Performed BackdropJob from Inline(default) in 0.82ms
3484
+  (0.1ms) rollback transaction
3485
+  (0.1ms) begin transaction
3486
+ ------------------------
3487
+ BackdropTest: test_truth
3488
+ ------------------------
3489
+  (0.0ms) rollback transaction
3490
+  (0.1ms) begin transaction
3491
+ ---------------------------------
3492
+ SomethingTest: test_backdrop_test
3493
+ ---------------------------------
3494
+  (0.0ms) SAVEPOINT active_record_1
3495
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:31:52.998927"], ["updated_at", "2015-12-18 18:31:52.998927"]]
3496
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3497
+  (0.0ms) SAVEPOINT active_record_1
3498
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:31:53.000074"], ["id", 980190963]]
3499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3500
+  (0.0ms) SAVEPOINT active_record_1
3501
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:31:53.001165"], ["id", 980190963]]
3502
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3503
+  (0.0ms) SAVEPOINT active_record_1
3504
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:31:53.002105"], ["id", 980190963]]
3505
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3506
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3507
+  (0.1ms) rollback transaction
3508
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3509
+  (0.1ms) begin transaction
3510
+ ---------------------------------------------
3511
+ ActAsBackdropTest: test_model_act_as_backdrop
3512
+ ---------------------------------------------
3513
+  (0.1ms) SAVEPOINT active_record_1
3514
+ SQL (0.2ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:32:04.565379"], ["updated_at", "2015-12-18 18:32:04.565379"]]
3515
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3516
+ [ActiveJob] [BackdropJob] [623ca525-7004-44b0-824b-fb16c6bf627b] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:32:04.565Z\"],\"updated_at\":[null,\"2015-12-18T18:32:04.565Z\"],\"id\":[null,980190963]}}"
3517
+ [ActiveJob] [BackdropJob] [623ca525-7004-44b0-824b-fb16c6bf627b] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3518
+ [ActiveJob] [BackdropJob] [623ca525-7004-44b0-824b-fb16c6bf627b] Performed BackdropJob from Inline(default) in 6.75ms
3519
+ [ActiveJob] Enqueued BackdropJob (Job ID: 623ca525-7004-44b0-824b-fb16c6bf627b) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:32:04.565Z\"],\"updated_at\":[null,\"2015-12-18T18:32:04.565Z\"],\"id\":[null,980190963]}}"
3520
+  (0.0ms) SAVEPOINT active_record_1
3521
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:32:04.577375"], ["id", 980190963]]
3522
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3523
+ [ActiveJob] [BackdropJob] [1480cd77-2ff8-42a6-ab0e-bd9ac0113511] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:32:04.565Z\",\"2015-12-18T18:32:04.577Z\"]}}"
3524
+ [ActiveJob] [BackdropJob] [1480cd77-2ff8-42a6-ab0e-bd9ac0113511] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3525
+ [ActiveJob] [BackdropJob] [1480cd77-2ff8-42a6-ab0e-bd9ac0113511]  (0.0ms) SAVEPOINT active_record_1
3526
+ [ActiveJob] [BackdropJob] [1480cd77-2ff8-42a6-ab0e-bd9ac0113511] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-18 18:32:04.580152"], ["id", 980190963]]
3527
+ [ActiveJob] [BackdropJob] [1480cd77-2ff8-42a6-ab0e-bd9ac0113511]  (0.0ms) RELEASE SAVEPOINT active_record_1
3528
+ [ActiveJob] [BackdropJob] [1480cd77-2ff8-42a6-ab0e-bd9ac0113511] Performed BackdropJob from Inline(default) in 2.04ms
3529
+ [ActiveJob] Enqueued BackdropJob (Job ID: 1480cd77-2ff8-42a6-ab0e-bd9ac0113511) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:32:04.565Z\",\"2015-12-18T18:32:04.577Z\"]}}"
3530
+  (0.0ms) SAVEPOINT active_record_1
3531
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:32:04.581584"], ["id", 980190963]]
3532
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3533
+ [ActiveJob] [BackdropJob] [5c509cc1-3151-45bd-8091-1bafb35bb1ae] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:32:04.577Z\",\"2015-12-18T18:32:04.581Z\"]}}"
3534
+ [ActiveJob] [BackdropJob] [5c509cc1-3151-45bd-8091-1bafb35bb1ae] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3535
+ [ActiveJob] [BackdropJob] [5c509cc1-3151-45bd-8091-1bafb35bb1ae]  (0.0ms) SAVEPOINT active_record_1
3536
+ [ActiveJob] [BackdropJob] [5c509cc1-3151-45bd-8091-1bafb35bb1ae] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "def"], ["updated_at", "2015-12-18 18:32:04.583601"], ["id", 980190963]]
3537
+ [ActiveJob] [BackdropJob] [5c509cc1-3151-45bd-8091-1bafb35bb1ae]  (0.0ms) RELEASE SAVEPOINT active_record_1
3538
+ [ActiveJob] [BackdropJob] [5c509cc1-3151-45bd-8091-1bafb35bb1ae] Performed BackdropJob from Inline(default) in 1.67ms
3539
+ [ActiveJob] Enqueued BackdropJob (Job ID: 5c509cc1-3151-45bd-8091-1bafb35bb1ae) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:32:04.577Z\",\"2015-12-18T18:32:04.581Z\"]}}"
3540
+  (0.0ms) SAVEPOINT active_record_1
3541
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:32:04.584936"], ["id", 980190963]]
3542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3543
+ [ActiveJob] [BackdropJob] [4193637a-d605-4bb3-8726-41766e56d23f] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:32:04.581Z\",\"2015-12-18T18:32:04.584Z\"]}}"
3544
+ [ActiveJob] [BackdropJob] [4193637a-d605-4bb3-8726-41766e56d23f] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3545
+ [ActiveJob] [BackdropJob] [4193637a-d605-4bb3-8726-41766e56d23f]  (0.0ms) SAVEPOINT active_record_1
3546
+ [ActiveJob] [BackdropJob] [4193637a-d605-4bb3-8726-41766e56d23f] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "something better"], ["updated_at", "2015-12-18 18:32:04.586995"], ["id", 980190963]]
3547
+ [ActiveJob] [BackdropJob] [4193637a-d605-4bb3-8726-41766e56d23f]  (0.1ms) RELEASE SAVEPOINT active_record_1
3548
+ [ActiveJob] [BackdropJob] [4193637a-d605-4bb3-8726-41766e56d23f] Performed BackdropJob from Inline(default) in 1.86ms
3549
+ [ActiveJob] Enqueued BackdropJob (Job ID: 4193637a-d605-4bb3-8726-41766e56d23f) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:32:04.581Z\",\"2015-12-18T18:32:04.584Z\"]}}"
3550
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" ORDER BY "somethings"."id" DESC LIMIT 1
3551
+  (0.1ms) rollback transaction
3552
+  (0.1ms) begin transaction
3553
+ ------------------------
3554
+ BackdropTest: test_truth
3555
+ ------------------------
3556
+  (0.0ms) rollback transaction
3557
+  (0.1ms) begin transaction
3558
+ ---------------------------------
3559
+ SomethingTest: test_backdrop_test
3560
+ ---------------------------------
3561
+  (0.0ms) SAVEPOINT active_record_1
3562
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:32:04.590967"], ["updated_at", "2015-12-18 18:32:04.590967"]]
3563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3564
+  (0.0ms) SAVEPOINT active_record_1
3565
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:32:04.591981"], ["id", 980190963]]
3566
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3567
+  (0.0ms) SAVEPOINT active_record_1
3568
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:32:04.592972"], ["id", 980190963]]
3569
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3570
+  (0.1ms) SAVEPOINT active_record_1
3571
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:32:04.593898"], ["id", 980190963]]
3572
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3573
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3574
+  (0.1ms) rollback transaction
3575
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3576
+  (0.1ms) begin transaction
3577
+ ------------------------
3578
+ BackdropTest: test_truth
3579
+ ------------------------
3580
+  (0.0ms) rollback transaction
3581
+  (0.0ms) begin transaction
3582
+ ---------------------------------
3583
+ SomethingTest: test_backdrop_test
3584
+ ---------------------------------
3585
+  (0.1ms) SAVEPOINT active_record_1
3586
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:33:09.854164"], ["updated_at", "2015-12-18 18:33:09.854164"]]
3587
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3588
+  (0.0ms) SAVEPOINT active_record_1
3589
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:33:09.857156"], ["id", 980190963]]
3590
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3591
+  (0.1ms) SAVEPOINT active_record_1
3592
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:33:09.860462"], ["id", 980190963]]
3593
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3594
+  (0.0ms) SAVEPOINT active_record_1
3595
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:33:09.861482"], ["id", 980190963]]
3596
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3597
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3598
+  (0.2ms) rollback transaction
3599
+  (0.1ms) begin transaction
3600
+ ---------------------------------------------
3601
+ ActAsBackdropTest: test_model_act_as_backdrop
3602
+ ---------------------------------------------
3603
+  (0.1ms) SAVEPOINT active_record_1
3604
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:33:09.864804"], ["updated_at", "2015-12-18 18:33:09.864804"]]
3605
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3606
+ [ActiveJob] [BackdropJob] [1bc849e7-b9d9-4221-958b-17fb221b18a0] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:33:09.864Z\"],\"updated_at\":[null,\"2015-12-18T18:33:09.864Z\"],\"id\":[null,980190963]}}"
3607
+ [ActiveJob] [BackdropJob] [1bc849e7-b9d9-4221-958b-17fb221b18a0] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3608
+ [ActiveJob] [BackdropJob] [1bc849e7-b9d9-4221-958b-17fb221b18a0] Performed BackdropJob from Inline(default) in 4.22ms
3609
+ [ActiveJob] Enqueued BackdropJob (Job ID: 1bc849e7-b9d9-4221-958b-17fb221b18a0) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:33:09.864Z\"],\"updated_at\":[null,\"2015-12-18T18:33:09.864Z\"],\"id\":[null,980190963]}}"
3610
+  (0.1ms) SAVEPOINT active_record_1
3611
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:33:09.872424"], ["id", 980190963]]
3612
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3613
+ [ActiveJob] [BackdropJob] [8332ab57-a560-4397-a8dc-244ef1aed6f0] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:33:09.864Z\",\"2015-12-18T18:33:09.872Z\"]}}"
3614
+ [ActiveJob] [BackdropJob] [8332ab57-a560-4397-a8dc-244ef1aed6f0] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3615
+ [ActiveJob] [BackdropJob] [8332ab57-a560-4397-a8dc-244ef1aed6f0]  (0.0ms) SAVEPOINT active_record_1
3616
+ [ActiveJob] [BackdropJob] [8332ab57-a560-4397-a8dc-244ef1aed6f0] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-18 18:33:09.874675"], ["id", 980190963]]
3617
+ [ActiveJob] [BackdropJob] [8332ab57-a560-4397-a8dc-244ef1aed6f0]  (0.0ms) RELEASE SAVEPOINT active_record_1
3618
+ [ActiveJob] [BackdropJob] [8332ab57-a560-4397-a8dc-244ef1aed6f0] [BackdropJob] [0f90bc2f-eb7f-4ab2-83a5-9c7eca6a0318] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"check\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:33:09.872Z\",\"2015-12-18T18:33:09.874Z\"]}}"
3619
+ [ActiveJob] [BackdropJob] [8332ab57-a560-4397-a8dc-244ef1aed6f0] [BackdropJob] [0f90bc2f-eb7f-4ab2-83a5-9c7eca6a0318] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3620
+ [ActiveJob] [BackdropJob] [8332ab57-a560-4397-a8dc-244ef1aed6f0] [BackdropJob] [0f90bc2f-eb7f-4ab2-83a5-9c7eca6a0318] Performed BackdropJob from Inline(default) in 0.61ms
3621
+ [ActiveJob] [BackdropJob] [8332ab57-a560-4397-a8dc-244ef1aed6f0] Enqueued BackdropJob (Job ID: 0f90bc2f-eb7f-4ab2-83a5-9c7eca6a0318) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"check\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:33:09.872Z\",\"2015-12-18T18:33:09.874Z\"]}}"
3622
+ [ActiveJob] [BackdropJob] [8332ab57-a560-4397-a8dc-244ef1aed6f0] Performed BackdropJob from Inline(default) in 3.26ms
3623
+ [ActiveJob] Enqueued BackdropJob (Job ID: 8332ab57-a560-4397-a8dc-244ef1aed6f0) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:33:09.864Z\",\"2015-12-18T18:33:09.872Z\"]}}"
3624
+  (0.0ms) SAVEPOINT active_record_1
3625
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:33:09.877384"], ["id", 980190963]]
3626
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3627
+ [ActiveJob] [BackdropJob] [be8d2ade-bc87-44d0-9486-82eed8dff287] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:33:09.872Z\",\"2015-12-18T18:33:09.877Z\"]}}"
3628
+ [ActiveJob] [BackdropJob] [be8d2ade-bc87-44d0-9486-82eed8dff287] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3629
+ [ActiveJob] [BackdropJob] [be8d2ade-bc87-44d0-9486-82eed8dff287]  (0.0ms) SAVEPOINT active_record_1
3630
+ [ActiveJob] [BackdropJob] [be8d2ade-bc87-44d0-9486-82eed8dff287] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "def"], ["updated_at", "2015-12-18 18:33:09.879432"], ["id", 980190963]]
3631
+ [ActiveJob] [BackdropJob] [be8d2ade-bc87-44d0-9486-82eed8dff287]  (0.0ms) RELEASE SAVEPOINT active_record_1
3632
+ [ActiveJob] [BackdropJob] [be8d2ade-bc87-44d0-9486-82eed8dff287] [BackdropJob] [367bd4bc-dbb6-4d36-90df-5c0b14252195] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"check\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:33:09.877Z\",\"2015-12-18T18:33:09.879Z\"]}}"
3633
+ [ActiveJob] [BackdropJob] [be8d2ade-bc87-44d0-9486-82eed8dff287] [BackdropJob] [367bd4bc-dbb6-4d36-90df-5c0b14252195] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3634
+ [ActiveJob] [BackdropJob] [be8d2ade-bc87-44d0-9486-82eed8dff287] [BackdropJob] [367bd4bc-dbb6-4d36-90df-5c0b14252195] Performed BackdropJob from Inline(default) in 0.53ms
3635
+ [ActiveJob] [BackdropJob] [be8d2ade-bc87-44d0-9486-82eed8dff287] Enqueued BackdropJob (Job ID: 367bd4bc-dbb6-4d36-90df-5c0b14252195) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"check\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:33:09.877Z\",\"2015-12-18T18:33:09.879Z\"]}}"
3636
+ [ActiveJob] [BackdropJob] [be8d2ade-bc87-44d0-9486-82eed8dff287] Performed BackdropJob from Inline(default) in 2.93ms
3637
+ [ActiveJob] Enqueued BackdropJob (Job ID: be8d2ade-bc87-44d0-9486-82eed8dff287) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:33:09.872Z\",\"2015-12-18T18:33:09.877Z\"]}}"
3638
+  (0.0ms) SAVEPOINT active_record_1
3639
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:33:09.881975"], ["id", 980190963]]
3640
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3641
+ [ActiveJob] [BackdropJob] [3a8cce14-9394-43d6-8865-06fc6fcc132a] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:33:09.877Z\",\"2015-12-18T18:33:09.881Z\"]}}"
3642
+ [ActiveJob] [BackdropJob] [3a8cce14-9394-43d6-8865-06fc6fcc132a] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3643
+ [ActiveJob] [BackdropJob] [3a8cce14-9394-43d6-8865-06fc6fcc132a]  (0.1ms) SAVEPOINT active_record_1
3644
+ [ActiveJob] [BackdropJob] [3a8cce14-9394-43d6-8865-06fc6fcc132a] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "something better"], ["updated_at", "2015-12-18 18:33:09.883987"], ["id", 980190963]]
3645
+ [ActiveJob] [BackdropJob] [3a8cce14-9394-43d6-8865-06fc6fcc132a]  (0.1ms) RELEASE SAVEPOINT active_record_1
3646
+ [ActiveJob] [BackdropJob] [3a8cce14-9394-43d6-8865-06fc6fcc132a] [BackdropJob] [87394b90-875a-4213-a7d6-db8b1171f334] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"check\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:33:09.881Z\",\"2015-12-18T18:33:09.883Z\"]}}"
3647
+ [ActiveJob] [BackdropJob] [3a8cce14-9394-43d6-8865-06fc6fcc132a] [BackdropJob] [87394b90-875a-4213-a7d6-db8b1171f334] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3648
+ [ActiveJob] [BackdropJob] [3a8cce14-9394-43d6-8865-06fc6fcc132a] [BackdropJob] [87394b90-875a-4213-a7d6-db8b1171f334] Performed BackdropJob from Inline(default) in 0.64ms
3649
+ [ActiveJob] [BackdropJob] [3a8cce14-9394-43d6-8865-06fc6fcc132a] Enqueued BackdropJob (Job ID: 87394b90-875a-4213-a7d6-db8b1171f334) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"check\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:33:09.881Z\",\"2015-12-18T18:33:09.883Z\"]}}"
3650
+ [ActiveJob] [BackdropJob] [3a8cce14-9394-43d6-8865-06fc6fcc132a] Performed BackdropJob from Inline(default) in 3.05ms
3651
+ [ActiveJob] Enqueued BackdropJob (Job ID: 3a8cce14-9394-43d6-8865-06fc6fcc132a) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:33:09.877Z\",\"2015-12-18T18:33:09.881Z\"]}}"
3652
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" ORDER BY "somethings"."id" DESC LIMIT 1
3653
+  (0.1ms) rollback transaction
3654
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3655
+  (0.1ms) begin transaction
3656
+ ------------------------
3657
+ BackdropTest: test_truth
3658
+ ------------------------
3659
+  (0.1ms) rollback transaction
3660
+  (0.0ms) begin transaction
3661
+ ---------------------------------------------
3662
+ ActAsBackdropTest: test_model_act_as_backdrop
3663
+ ---------------------------------------------
3664
+  (0.1ms) SAVEPOINT active_record_1
3665
+ SQL (1.2ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:53:22.456709"], ["updated_at", "2015-12-18 18:53:22.456709"]]
3666
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3667
+ [ActiveJob] [BackdropJob] [dec7ceaa-05fb-426b-89bd-17b8cda2b4ac] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:53:22.456Z\"],\"updated_at\":[null,\"2015-12-18T18:53:22.456Z\"],\"id\":[null,980190963]}}"
3668
+ [ActiveJob] [BackdropJob] [dec7ceaa-05fb-426b-89bd-17b8cda2b4ac] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3669
+ [ActiveJob] [BackdropJob] [dec7ceaa-05fb-426b-89bd-17b8cda2b4ac] Performed BackdropJob from Inline(default) in 59.42ms
3670
+ [ActiveJob] Enqueued BackdropJob (Job ID: dec7ceaa-05fb-426b-89bd-17b8cda2b4ac) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:53:22.456Z\"],\"updated_at\":[null,\"2015-12-18T18:53:22.456Z\"],\"id\":[null,980190963]}}"
3671
+  (0.0ms) SAVEPOINT active_record_1
3672
+ SQL (0.4ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:53:22.531170"], ["id", 980190963]]
3673
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3674
+ [ActiveJob] [BackdropJob] [e7f64b3e-38e4-40ee-af5d-a4518e45745c] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:53:22.456Z\",\"2015-12-18T18:53:22.531Z\"]}}"
3675
+ [ActiveJob] [BackdropJob] [e7f64b3e-38e4-40ee-af5d-a4518e45745c] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3676
+ [ActiveJob] [BackdropJob] [e7f64b3e-38e4-40ee-af5d-a4518e45745c] SQL (0.1ms) UPDATE "somethings" SET "check" = 'abc' WHERE "somethings"."id" = ? [["id", 980190963]]
3677
+ [ActiveJob] [BackdropJob] [e7f64b3e-38e4-40ee-af5d-a4518e45745c] Performed BackdropJob from Inline(default) in 1.1ms
3678
+ [ActiveJob] Enqueued BackdropJob (Job ID: e7f64b3e-38e4-40ee-af5d-a4518e45745c) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:53:22.456Z\",\"2015-12-18T18:53:22.531Z\"]}}"
3679
+  (0.0ms) SAVEPOINT active_record_1
3680
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:53:22.534761"], ["id", 980190963]]
3681
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3682
+ [ActiveJob] [BackdropJob] [99fee527-daf9-4879-96c1-7254e281093f] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:53:22.531Z\",\"2015-12-18T18:53:22.534Z\"]}}"
3683
+ [ActiveJob] [BackdropJob] [99fee527-daf9-4879-96c1-7254e281093f] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3684
+ [ActiveJob] [BackdropJob] [99fee527-daf9-4879-96c1-7254e281093f] SQL (0.1ms) UPDATE "somethings" SET "check" = 'def' WHERE "somethings"."id" = ? [["id", 980190963]]
3685
+ [ActiveJob] [BackdropJob] [99fee527-daf9-4879-96c1-7254e281093f] Performed BackdropJob from Inline(default) in 1.18ms
3686
+ [ActiveJob] Enqueued BackdropJob (Job ID: 99fee527-daf9-4879-96c1-7254e281093f) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T18:53:22.531Z\",\"2015-12-18T18:53:22.534Z\"]}}"
3687
+  (0.0ms) SAVEPOINT active_record_1
3688
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:53:22.537485"], ["id", 980190963]]
3689
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3690
+ [ActiveJob] [BackdropJob] [4c634484-b86b-40ca-a995-314b762e6e79] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:53:22.534Z\",\"2015-12-18T18:53:22.537Z\"]}}"
3691
+ [ActiveJob] [BackdropJob] [4c634484-b86b-40ca-a995-314b762e6e79] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3692
+ [ActiveJob] [BackdropJob] [4c634484-b86b-40ca-a995-314b762e6e79] SQL (0.1ms) UPDATE "somethings" SET "check" = 'something better' WHERE "somethings"."id" = ? [["id", 980190963]]
3693
+ [ActiveJob] [BackdropJob] [4c634484-b86b-40ca-a995-314b762e6e79] Performed BackdropJob from Inline(default) in 1.18ms
3694
+ [ActiveJob] Enqueued BackdropJob (Job ID: 4c634484-b86b-40ca-a995-314b762e6e79) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T18:53:22.534Z\",\"2015-12-18T18:53:22.537Z\"]}}"
3695
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" ORDER BY "somethings"."id" DESC LIMIT 1
3696
+  (0.1ms) rollback transaction
3697
+  (0.1ms) begin transaction
3698
+ ---------------------------------
3699
+ SomethingTest: test_backdrop_test
3700
+ ---------------------------------
3701
+  (0.0ms) SAVEPOINT active_record_1
3702
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:53:22.542277"], ["updated_at", "2015-12-18 18:53:22.542277"]]
3703
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3704
+  (0.0ms) SAVEPOINT active_record_1
3705
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:53:22.543705"], ["id", 980190963]]
3706
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3707
+  (0.0ms) SAVEPOINT active_record_1
3708
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:53:22.544833"], ["id", 980190963]]
3709
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3710
+  (0.0ms) SAVEPOINT active_record_1
3711
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:53:22.545747"], ["id", 980190963]]
3712
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3713
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3714
+  (0.1ms) rollback transaction
3715
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3716
+  (0.2ms) begin transaction
3717
+ ------------------------
3718
+ BackdropTest: test_truth
3719
+ ------------------------
3720
+  (0.1ms) rollback transaction
3721
+  (0.1ms) begin transaction
3722
+ ---------------------------------
3723
+ SomethingTest: test_backdrop_test
3724
+ ---------------------------------
3725
+  (0.1ms) SAVEPOINT active_record_1
3726
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:59:48.203802"], ["updated_at", "2015-12-18 18:59:48.203802"]]
3727
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3728
+  (0.0ms) SAVEPOINT active_record_1
3729
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:59:48.206591"], ["id", 980190963]]
3730
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3731
+  (0.0ms) SAVEPOINT active_record_1
3732
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 18:59:48.209879"], ["id", 980190963]]
3733
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3734
+  (0.0ms) SAVEPOINT active_record_1
3735
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 18:59:48.210833"], ["id", 980190963]]
3736
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3737
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3738
+  (0.1ms) rollback transaction
3739
+  (0.1ms) begin transaction
3740
+ ---------------------------------------------
3741
+ ActAsBackdropTest: test_model_act_as_backdrop
3742
+ ---------------------------------------------
3743
+  (0.1ms) SAVEPOINT active_record_1
3744
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 18:59:48.215055"], ["updated_at", "2015-12-18 18:59:48.215055"]]
3745
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3746
+ [ActiveJob] [BackdropJob] [1f46d153-a5f3-493e-8787-36b7f8717017] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:59:48.215Z\"],\"updated_at\":[null,\"2015-12-18T18:59:48.215Z\"],\"id\":[null,980190963]}}"
3747
+ [ActiveJob] [BackdropJob] [1f46d153-a5f3-493e-8787-36b7f8717017] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3748
+ [ActiveJob] [BackdropJob] [1f46d153-a5f3-493e-8787-36b7f8717017] Performed BackdropJob from Inline(default) in 4.35ms
3749
+ [ActiveJob] Enqueued BackdropJob (Job ID: 1f46d153-a5f3-493e-8787-36b7f8717017) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T18:59:48.215Z\"],\"updated_at\":[null,\"2015-12-18T18:59:48.215Z\"],\"id\":[null,980190963]}}"
3750
+  (0.0ms) SAVEPOINT active_record_1
3751
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 18:59:48.222880"], ["id", 980190963]]
3752
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3753
+ [ActiveJob] [BackdropJob] [6d0f578f-64b3-489b-a334-7f04e4e04d43] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T18:59:48.215Z\",\"2015-12-18T18:59:48.222Z\"]}}"
3754
+ [ActiveJob] [BackdropJob] [6d0f578f-64b3-489b-a334-7f04e4e04d43] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3755
+ [ActiveJob] [BackdropJob] [6d0f578f-64b3-489b-a334-7f04e4e04d43] Performed BackdropJob from Inline(default) in 1.12ms
3756
+  (0.1ms) rollback transaction
3757
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3758
+  (0.1ms) begin transaction
3759
+ ---------------------------------
3760
+ SomethingTest: test_backdrop_test
3761
+ ---------------------------------
3762
+  (0.1ms) SAVEPOINT active_record_1
3763
+ SQL (0.2ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:00:09.507371"], ["updated_at", "2015-12-18 19:00:09.507371"]]
3764
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3765
+  (0.0ms) SAVEPOINT active_record_1
3766
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:00:09.510123"], ["id", 980190963]]
3767
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3768
+  (0.0ms) SAVEPOINT active_record_1
3769
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:00:09.513280"], ["id", 980190963]]
3770
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3771
+  (0.0ms) SAVEPOINT active_record_1
3772
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:00:09.514243"], ["id", 980190963]]
3773
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3774
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3775
+  (0.1ms) rollback transaction
3776
+  (0.1ms) begin transaction
3777
+ ---------------------------------------------
3778
+ ActAsBackdropTest: test_model_act_as_backdrop
3779
+ ---------------------------------------------
3780
+  (0.0ms) SAVEPOINT active_record_1
3781
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:00:09.518845"], ["updated_at", "2015-12-18 19:00:09.518845"]]
3782
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3783
+ [ActiveJob] [BackdropJob] [6866c2fa-ddad-41b4-a260-3552fdf0e2a6] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:00:09.518Z\"],\"updated_at\":[null,\"2015-12-18T19:00:09.518Z\"],\"id\":[null,980190963]}}"
3784
+ [ActiveJob] [BackdropJob] [6866c2fa-ddad-41b4-a260-3552fdf0e2a6] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3785
+ [ActiveJob] [BackdropJob] [6866c2fa-ddad-41b4-a260-3552fdf0e2a6] Performed BackdropJob from Inline(default) in 4.06ms
3786
+ [ActiveJob] Enqueued BackdropJob (Job ID: 6866c2fa-ddad-41b4-a260-3552fdf0e2a6) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:00:09.518Z\"],\"updated_at\":[null,\"2015-12-18T19:00:09.518Z\"],\"id\":[null,980190963]}}"
3787
+  (0.0ms) SAVEPOINT active_record_1
3788
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:00:09.526241"], ["id", 980190963]]
3789
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3790
+ [ActiveJob] [BackdropJob] [f3d5f682-d0c6-4460-b96a-869405882b9c] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:00:09.518Z\",\"2015-12-18T19:00:09.526Z\"]}}"
3791
+ [ActiveJob] [BackdropJob] [f3d5f682-d0c6-4460-b96a-869405882b9c] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3792
+ [ActiveJob] [BackdropJob] [f3d5f682-d0c6-4460-b96a-869405882b9c] Performed BackdropJob from Inline(default) in 0.86ms
3793
+  (0.1ms) rollback transaction
3794
+  (0.1ms) begin transaction
3795
+ ------------------------
3796
+ BackdropTest: test_truth
3797
+ ------------------------
3798
+  (0.1ms) rollback transaction
3799
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3800
+  (0.4ms) begin transaction
3801
+ ---------------------------------
3802
+ SomethingTest: test_backdrop_test
3803
+ ---------------------------------
3804
+  (0.1ms) SAVEPOINT active_record_1
3805
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:00:40.258962"], ["updated_at", "2015-12-18 19:00:40.258962"]]
3806
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3807
+  (0.0ms) SAVEPOINT active_record_1
3808
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:00:40.263181"], ["id", 980190963]]
3809
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3810
+  (0.0ms) SAVEPOINT active_record_1
3811
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:00:40.266692"], ["id", 980190963]]
3812
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3813
+  (0.0ms) SAVEPOINT active_record_1
3814
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:00:40.267889"], ["id", 980190963]]
3815
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3816
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3817
+  (0.1ms) rollback transaction
3818
+  (0.0ms) begin transaction
3819
+ ---------------------------------------------
3820
+ ActAsBackdropTest: test_model_act_as_backdrop
3821
+ ---------------------------------------------
3822
+  (0.0ms) rollback transaction
3823
+  (0.0ms) begin transaction
3824
+ ------------------------
3825
+ BackdropTest: test_truth
3826
+ ------------------------
3827
+  (0.0ms) rollback transaction
3828
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3829
+  (0.2ms) begin transaction
3830
+ ------------------------
3831
+ BackdropTest: test_truth
3832
+ ------------------------
3833
+  (0.1ms) rollback transaction
3834
+  (0.1ms) begin transaction
3835
+ ---------------------------------------------
3836
+ ActAsBackdropTest: test_model_act_as_backdrop
3837
+ ---------------------------------------------
3838
+  (0.1ms) SAVEPOINT active_record_1
3839
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:01:14.369635"], ["updated_at", "2015-12-18 19:01:14.369635"]]
3840
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3841
+ [ActiveJob] [BackdropJob] [78f58a23-f0b9-490b-98eb-76579960c3a4] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:01:14.369Z\"],\"updated_at\":[null,\"2015-12-18T19:01:14.369Z\"],\"id\":[null,980190963]}}"
3842
+ [ActiveJob] [BackdropJob] [78f58a23-f0b9-490b-98eb-76579960c3a4] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3843
+ [ActiveJob] [BackdropJob] [78f58a23-f0b9-490b-98eb-76579960c3a4] Performed BackdropJob from Inline(default) in 6.55ms
3844
+ [ActiveJob] Enqueued BackdropJob (Job ID: 78f58a23-f0b9-490b-98eb-76579960c3a4) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:01:14.369Z\"],\"updated_at\":[null,\"2015-12-18T19:01:14.369Z\"],\"id\":[null,980190963]}}"
3845
+  (0.0ms) SAVEPOINT active_record_1
3846
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:01:14.381590"], ["id", 980190963]]
3847
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3848
+ [ActiveJob] [BackdropJob] [708f08c5-3bd1-43fc-adec-318c0fa2912d] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:01:14.369Z\",\"2015-12-18T19:01:14.381Z\"]}}"
3849
+ [ActiveJob] [BackdropJob] [708f08c5-3bd1-43fc-adec-318c0fa2912d] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3850
+ [ActiveJob] [BackdropJob] [708f08c5-3bd1-43fc-adec-318c0fa2912d] Performed BackdropJob from Inline(default) in 0.86ms
3851
+  (0.1ms) rollback transaction
3852
+  (0.1ms) begin transaction
3853
+ ---------------------------------
3854
+ SomethingTest: test_backdrop_test
3855
+ ---------------------------------
3856
+  (0.0ms) SAVEPOINT active_record_1
3857
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:01:14.385696"], ["updated_at", "2015-12-18 19:01:14.385696"]]
3858
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3859
+  (0.0ms) SAVEPOINT active_record_1
3860
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:01:14.386730"], ["id", 980190963]]
3861
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3862
+  (0.0ms) SAVEPOINT active_record_1
3863
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:01:14.387665"], ["id", 980190963]]
3864
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3865
+  (0.0ms) SAVEPOINT active_record_1
3866
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:01:14.388563"], ["id", 980190963]]
3867
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3868
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3869
+  (0.1ms) rollback transaction
3870
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3871
+  (0.1ms) begin transaction
3872
+ ---------------------------------------------
3873
+ ActAsBackdropTest: test_model_act_as_backdrop
3874
+ ---------------------------------------------
3875
+  (0.1ms) SAVEPOINT active_record_1
3876
+ SQL (0.2ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:03:28.606717"], ["updated_at", "2015-12-18 19:03:28.606717"]]
3877
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3878
+ [ActiveJob] [BackdropJob] [344005ad-c695-470c-9a13-9c3b53404c5b] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:03:28.606Z\"],\"updated_at\":[null,\"2015-12-18T19:03:28.606Z\"],\"id\":[null,980190963]}}"
3879
+ [ActiveJob] [BackdropJob] [344005ad-c695-470c-9a13-9c3b53404c5b] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3880
+ [ActiveJob] [BackdropJob] [344005ad-c695-470c-9a13-9c3b53404c5b] Performed BackdropJob from Inline(default) in 7.13ms
3881
+ [ActiveJob] Enqueued BackdropJob (Job ID: 344005ad-c695-470c-9a13-9c3b53404c5b) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:03:28.606Z\"],\"updated_at\":[null,\"2015-12-18T19:03:28.606Z\"],\"id\":[null,980190963]}}"
3882
+  (0.1ms) SAVEPOINT active_record_1
3883
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:03:28.619234"], ["id", 980190963]]
3884
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3885
+ [ActiveJob] [BackdropJob] [f789fae2-b58c-4a2c-beb7-15eae602877b] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:03:28.606Z\",\"2015-12-18T19:03:28.619Z\"]}}"
3886
+ [ActiveJob] [BackdropJob] [f789fae2-b58c-4a2c-beb7-15eae602877b] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3887
+ [ActiveJob] [BackdropJob] [f789fae2-b58c-4a2c-beb7-15eae602877b] Performed BackdropJob from Inline(default) in 1.09ms
3888
+  (0.2ms) rollback transaction
3889
+  (0.1ms) begin transaction
3890
+ ------------------------
3891
+ BackdropTest: test_truth
3892
+ ------------------------
3893
+  (0.0ms) rollback transaction
3894
+  (0.1ms) begin transaction
3895
+ ---------------------------------
3896
+ SomethingTest: test_backdrop_test
3897
+ ---------------------------------
3898
+  (0.0ms) SAVEPOINT active_record_1
3899
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:03:28.624238"], ["updated_at", "2015-12-18 19:03:28.624238"]]
3900
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3901
+  (0.1ms) SAVEPOINT active_record_1
3902
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:03:28.625472"], ["id", 980190963]]
3903
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3904
+  (0.0ms) SAVEPOINT active_record_1
3905
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:03:28.626400"], ["id", 980190963]]
3906
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3907
+  (0.0ms) SAVEPOINT active_record_1
3908
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:03:28.627247"], ["id", 980190963]]
3909
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3910
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3911
+  (0.1ms) rollback transaction
3912
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3913
+  (0.1ms) begin transaction
3914
+ ------------------------
3915
+ BackdropTest: test_truth
3916
+ ------------------------
3917
+  (0.0ms) rollback transaction
3918
+  (0.1ms) begin transaction
3919
+ ---------------------------------
3920
+ SomethingTest: test_backdrop_test
3921
+ ---------------------------------
3922
+  (0.1ms) SAVEPOINT active_record_1
3923
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:05:38.867478"], ["updated_at", "2015-12-18 19:05:38.867478"]]
3924
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3925
+  (0.0ms) SAVEPOINT active_record_1
3926
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:05:38.870409"], ["id", 980190963]]
3927
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3928
+  (0.1ms) SAVEPOINT active_record_1
3929
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:05:38.873615"], ["id", 980190963]]
3930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3931
+  (0.1ms) SAVEPOINT active_record_1
3932
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:05:38.874645"], ["id", 980190963]]
3933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3934
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3935
+  (0.1ms) rollback transaction
3936
+  (0.0ms) begin transaction
3937
+ ---------------------------------------------
3938
+ ActAsBackdropTest: test_model_act_as_backdrop
3939
+ ---------------------------------------------
3940
+  (0.1ms) SAVEPOINT active_record_1
3941
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:05:38.877917"], ["updated_at", "2015-12-18 19:05:38.877917"]]
3942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3943
+ [ActiveJob] [BackdropJob] [6de8ddc2-f9f2-403a-8807-c8f992626cf6] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:05:38.877Z\"],\"updated_at\":[null,\"2015-12-18T19:05:38.877Z\"],\"id\":[null,980190963]}}"
3944
+ [ActiveJob] [BackdropJob] [6de8ddc2-f9f2-403a-8807-c8f992626cf6] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3945
+ [ActiveJob] [BackdropJob] [6de8ddc2-f9f2-403a-8807-c8f992626cf6] Performed BackdropJob from Inline(default) in 4.07ms
3946
+ [ActiveJob] Enqueued BackdropJob (Job ID: 6de8ddc2-f9f2-403a-8807-c8f992626cf6) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:05:38.877Z\"],\"updated_at\":[null,\"2015-12-18T19:05:38.877Z\"],\"id\":[null,980190963]}}"
3947
+  (0.0ms) SAVEPOINT active_record_1
3948
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:05:38.885498"], ["id", 980190963]]
3949
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3950
+ [ActiveJob] [BackdropJob] [91ace757-2261-414d-b6e1-9e4f7bfed1bc] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:05:38.877Z\",\"2015-12-18T19:05:38.885Z\"]}}"
3951
+ [ActiveJob] [BackdropJob] [91ace757-2261-414d-b6e1-9e4f7bfed1bc] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3952
+ [ActiveJob] [BackdropJob] [91ace757-2261-414d-b6e1-9e4f7bfed1bc] Performed BackdropJob from Inline(default) in 8.88ms
3953
+ [ActiveJob] Enqueued BackdropJob (Job ID: 91ace757-2261-414d-b6e1-9e4f7bfed1bc) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:05:38.877Z\",\"2015-12-18T19:05:38.885Z\"]}}"
3954
+  (0.1ms) SAVEPOINT active_record_1
3955
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:05:38.896609"], ["id", 980190963]]
3956
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3957
+ [ActiveJob] [BackdropJob] [65847dac-01bb-4e0d-bda8-afd3e8d0a73d] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:05:38.885Z\",\"2015-12-18T19:05:38.896Z\"]}}"
3958
+ [ActiveJob] [BackdropJob] [65847dac-01bb-4e0d-bda8-afd3e8d0a73d] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3959
+ [ActiveJob] [BackdropJob] [65847dac-01bb-4e0d-bda8-afd3e8d0a73d] Performed BackdropJob from Inline(default) in 1.25ms
3960
+ [ActiveJob] Enqueued BackdropJob (Job ID: 65847dac-01bb-4e0d-bda8-afd3e8d0a73d) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:05:38.885Z\",\"2015-12-18T19:05:38.896Z\"]}}"
3961
+  (0.0ms) SAVEPOINT active_record_1
3962
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:05:38.900838"], ["id", 980190963]]
3963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3964
+ [ActiveJob] [BackdropJob] [e90c9072-3f11-42e3-a3f0-ec1b7340dbea] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:05:38.896Z\",\"2015-12-18T19:05:38.900Z\"]}}"
3965
+ [ActiveJob] [BackdropJob] [e90c9072-3f11-42e3-a3f0-ec1b7340dbea] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3966
+ [ActiveJob] [BackdropJob] [e90c9072-3f11-42e3-a3f0-ec1b7340dbea] Performed BackdropJob from Inline(default) in 0.6ms
3967
+ [ActiveJob] Enqueued BackdropJob (Job ID: e90c9072-3f11-42e3-a3f0-ec1b7340dbea) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:05:38.896Z\",\"2015-12-18T19:05:38.900Z\"]}}"
3968
+  (0.1ms) rollback transaction
3969
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3970
+  (0.2ms) begin transaction
3971
+ ---------------------------------------------
3972
+ ActAsBackdropTest: test_model_act_as_backdrop
3973
+ ---------------------------------------------
3974
+  (0.1ms) SAVEPOINT active_record_1
3975
+ SQL (1.8ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:07:01.103230"], ["updated_at", "2015-12-18 19:07:01.103230"]]
3976
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3977
+ [ActiveJob] [BackdropJob] [691419ce-bf2f-4d27-a18d-a3878a398b48] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:07:01.103Z\"],\"updated_at\":[null,\"2015-12-18T19:07:01.103Z\"],\"id\":[null,980190963]}}"
3978
+ [ActiveJob] [BackdropJob] [691419ce-bf2f-4d27-a18d-a3878a398b48] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3979
+ [ActiveJob] [BackdropJob] [691419ce-bf2f-4d27-a18d-a3878a398b48] Performed BackdropJob from Inline(default) in 14.89ms
3980
+ [ActiveJob] Enqueued BackdropJob (Job ID: 691419ce-bf2f-4d27-a18d-a3878a398b48) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:07:01.103Z\"],\"updated_at\":[null,\"2015-12-18T19:07:01.103Z\"],\"id\":[null,980190963]}}"
3981
+  (0.1ms) SAVEPOINT active_record_1
3982
+ SQL (0.7ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:07:01.133270"], ["id", 980190963]]
3983
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3984
+ [ActiveJob] [BackdropJob] [a2353607-de1c-4a36-99bf-85b18383273e] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:07:01.103Z\",\"2015-12-18T19:07:01.133Z\"]}}"
3985
+ [ActiveJob] [BackdropJob] [a2353607-de1c-4a36-99bf-85b18383273e] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3986
+ [ActiveJob] [BackdropJob] [a2353607-de1c-4a36-99bf-85b18383273e] Performed BackdropJob from Inline(default) in 2.67ms
3987
+ [ActiveJob] Enqueued BackdropJob (Job ID: a2353607-de1c-4a36-99bf-85b18383273e) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:07:01.103Z\",\"2015-12-18T19:07:01.133Z\"]}}"
3988
+  (0.1ms) SAVEPOINT active_record_1
3989
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:07:01.141741"], ["id", 980190963]]
3990
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3991
+ [ActiveJob] [BackdropJob] [e9fa2391-27b7-42b5-bb9a-c789d6e21b18] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:07:01.133Z\",\"2015-12-18T19:07:01.141Z\"]}}"
3992
+ [ActiveJob] [BackdropJob] [e9fa2391-27b7-42b5-bb9a-c789d6e21b18] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
3993
+ [ActiveJob] [BackdropJob] [e9fa2391-27b7-42b5-bb9a-c789d6e21b18] Performed BackdropJob from Inline(default) in 4.17ms
3994
+ [ActiveJob] Enqueued BackdropJob (Job ID: e9fa2391-27b7-42b5-bb9a-c789d6e21b18) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:07:01.133Z\",\"2015-12-18T19:07:01.141Z\"]}}"
3995
+  (0.0ms) SAVEPOINT active_record_1
3996
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:07:01.150059"], ["id", 980190963]]
3997
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3998
+ [ActiveJob] [BackdropJob] [858e1d3c-0de0-4d2e-b71b-984d484d64dc] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:07:01.141Z\",\"2015-12-18T19:07:01.150Z\"]}}"
3999
+ [ActiveJob] [BackdropJob] [858e1d3c-0de0-4d2e-b71b-984d484d64dc] Something Load (0.4ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4000
+ [ActiveJob] [BackdropJob] [858e1d3c-0de0-4d2e-b71b-984d484d64dc] Performed BackdropJob from Inline(default) in 0.99ms
4001
+ [ActiveJob] Enqueued BackdropJob (Job ID: 858e1d3c-0de0-4d2e-b71b-984d484d64dc) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:07:01.141Z\",\"2015-12-18T19:07:01.150Z\"]}}"
4002
+  (0.1ms) rollback transaction
4003
+  (0.4ms) begin transaction
4004
+ ------------------------
4005
+ BackdropTest: test_truth
4006
+ ------------------------
4007
+  (0.0ms) rollback transaction
4008
+  (0.0ms) begin transaction
4009
+ ---------------------------------
4010
+ SomethingTest: test_backdrop_test
4011
+ ---------------------------------
4012
+  (0.0ms) SAVEPOINT active_record_1
4013
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:07:01.156916"], ["updated_at", "2015-12-18 19:07:01.156916"]]
4014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4015
+  (0.0ms) SAVEPOINT active_record_1
4016
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:07:01.158336"], ["id", 980190963]]
4017
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4018
+  (0.0ms) SAVEPOINT active_record_1
4019
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:07:01.159644"], ["id", 980190963]]
4020
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4021
+  (0.0ms) SAVEPOINT active_record_1
4022
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:07:01.160714"], ["id", 980190963]]
4023
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4024
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4025
+  (0.1ms) rollback transaction
4026
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4027
+  (0.2ms) begin transaction
4028
+ ---------------------------------------------
4029
+ ActAsBackdropTest: test_model_act_as_backdrop
4030
+ ---------------------------------------------
4031
+  (0.1ms) SAVEPOINT active_record_1
4032
+ SQL (1.8ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:07:31.079266"], ["updated_at", "2015-12-18 19:07:31.079266"]]
4033
+  (0.3ms) RELEASE SAVEPOINT active_record_1
4034
+ [ActiveJob] [BackdropJob] [73c9a12c-f93f-4f21-b3f5-4247a6fcd2ad] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:07:31.079Z\"],\"updated_at\":[null,\"2015-12-18T19:07:31.079Z\"],\"id\":[null,980190963]}}"
4035
+ [ActiveJob] [BackdropJob] [73c9a12c-f93f-4f21-b3f5-4247a6fcd2ad] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4036
+ [ActiveJob] [BackdropJob] [73c9a12c-f93f-4f21-b3f5-4247a6fcd2ad] Performed BackdropJob from Inline(default) in 16.63ms
4037
+ [ActiveJob] Enqueued BackdropJob (Job ID: 73c9a12c-f93f-4f21-b3f5-4247a6fcd2ad) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:07:31.079Z\"],\"updated_at\":[null,\"2015-12-18T19:07:31.079Z\"],\"id\":[null,980190963]}}"
4038
+  (0.1ms) SAVEPOINT active_record_1
4039
+ SQL (0.6ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:07:31.109567"], ["id", 980190963]]
4040
+  (0.2ms) RELEASE SAVEPOINT active_record_1
4041
+ [ActiveJob] [BackdropJob] [4def36c7-045f-4764-8c83-3c9d57be81c2] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:07:31.079Z\",\"2015-12-18T19:07:31.109Z\"]}}"
4042
+ [ActiveJob] [BackdropJob] [4def36c7-045f-4764-8c83-3c9d57be81c2] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4043
+ [ActiveJob] [BackdropJob] [4def36c7-045f-4764-8c83-3c9d57be81c2] Performed BackdropJob from Inline(default) in 1.79ms
4044
+ [ActiveJob] Enqueued BackdropJob (Job ID: 4def36c7-045f-4764-8c83-3c9d57be81c2) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:07:31.079Z\",\"2015-12-18T19:07:31.109Z\"]}}"
4045
+  (0.1ms) SAVEPOINT active_record_1
4046
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:07:31.116829"], ["id", 980190963]]
4047
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4048
+ [ActiveJob] [BackdropJob] [296dcc70-7976-48d1-a30c-f03ead18de32] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:07:31.109Z\",\"2015-12-18T19:07:31.116Z\"]}}"
4049
+ [ActiveJob] [BackdropJob] [296dcc70-7976-48d1-a30c-f03ead18de32] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4050
+ [ActiveJob] [BackdropJob] [296dcc70-7976-48d1-a30c-f03ead18de32] Performed BackdropJob from Inline(default) in 1.39ms
4051
+ [ActiveJob] Enqueued BackdropJob (Job ID: 296dcc70-7976-48d1-a30c-f03ead18de32) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:07:31.109Z\",\"2015-12-18T19:07:31.116Z\"]}}"
4052
+  (0.1ms) SAVEPOINT active_record_1
4053
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:07:31.121461"], ["id", 980190963]]
4054
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4055
+ [ActiveJob] [BackdropJob] [4691fb81-1762-4923-8bb5-d233f17debbd] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:07:31.116Z\",\"2015-12-18T19:07:31.121Z\"]}}"
4056
+ [ActiveJob] [BackdropJob] [4691fb81-1762-4923-8bb5-d233f17debbd] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4057
+ [ActiveJob] [BackdropJob] [4691fb81-1762-4923-8bb5-d233f17debbd] Performed BackdropJob from Inline(default) in 0.87ms
4058
+ [ActiveJob] Enqueued BackdropJob (Job ID: 4691fb81-1762-4923-8bb5-d233f17debbd) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:07:31.116Z\",\"2015-12-18T19:07:31.121Z\"]}}"
4059
+  (0.1ms) rollback transaction
4060
+  (0.1ms) begin transaction
4061
+ ------------------------
4062
+ BackdropTest: test_truth
4063
+ ------------------------
4064
+  (0.0ms) rollback transaction
4065
+  (0.0ms) begin transaction
4066
+ ---------------------------------
4067
+ SomethingTest: test_backdrop_test
4068
+ ---------------------------------
4069
+  (0.0ms) SAVEPOINT active_record_1
4070
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:07:31.127578"], ["updated_at", "2015-12-18 19:07:31.127578"]]
4071
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4072
+  (0.1ms) SAVEPOINT active_record_1
4073
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:07:31.128841"], ["id", 980190963]]
4074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4075
+  (0.0ms) SAVEPOINT active_record_1
4076
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:07:31.129764"], ["id", 980190963]]
4077
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4078
+  (0.0ms) SAVEPOINT active_record_1
4079
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:07:31.130746"], ["id", 980190963]]
4080
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4081
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4082
+  (0.1ms) rollback transaction
4083
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
4084
+  (0.2ms) begin transaction
4085
+ ---------------------------------------------
4086
+ ActAsBackdropTest: test_model_act_as_backdrop
4087
+ ---------------------------------------------
4088
+  (0.1ms) SAVEPOINT active_record_1
4089
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:07:50.414442"], ["updated_at", "2015-12-18 19:07:50.414442"]]
4090
+  (0.2ms) RELEASE SAVEPOINT active_record_1
4091
+ [ActiveJob] [BackdropJob] [afe22c43-b68a-4280-af28-debdcda6f0cb] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:07:50.414Z\"],\"updated_at\":[null,\"2015-12-18T19:07:50.414Z\"],\"id\":[null,980190963]}}"
4092
+ [ActiveJob] [BackdropJob] [afe22c43-b68a-4280-af28-debdcda6f0cb] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4093
+ [ActiveJob] [BackdropJob] [afe22c43-b68a-4280-af28-debdcda6f0cb] Performed BackdropJob from Inline(default) in 16.73ms
4094
+ [ActiveJob] Enqueued BackdropJob (Job ID: afe22c43-b68a-4280-af28-debdcda6f0cb) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:07:50.414Z\"],\"updated_at\":[null,\"2015-12-18T19:07:50.414Z\"],\"id\":[null,980190963]}}"
4095
+  (0.1ms) SAVEPOINT active_record_1
4096
+ SQL (0.4ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:07:50.442193"], ["id", 980190963]]
4097
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4098
+ [ActiveJob] [BackdropJob] [b8cd9718-d77b-4ef8-bb34-24b4fa144eb8] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:07:50.414Z\",\"2015-12-18T19:07:50.442Z\"]}}"
4099
+ [ActiveJob] [BackdropJob] [b8cd9718-d77b-4ef8-bb34-24b4fa144eb8] Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4100
+ [ActiveJob] [BackdropJob] [b8cd9718-d77b-4ef8-bb34-24b4fa144eb8] Performed BackdropJob from Inline(default) in 1.76ms
4101
+ [ActiveJob] Enqueued BackdropJob (Job ID: b8cd9718-d77b-4ef8-bb34-24b4fa144eb8) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:07:50.414Z\",\"2015-12-18T19:07:50.442Z\"]}}"
4102
+  (0.1ms) SAVEPOINT active_record_1
4103
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:07:50.448762"], ["id", 980190963]]
4104
+  (0.3ms) RELEASE SAVEPOINT active_record_1
4105
+ [ActiveJob] [BackdropJob] [80235c53-382f-43f0-8cf9-62a6407ad43e] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:07:50.442Z\",\"2015-12-18T19:07:50.448Z\"]}}"
4106
+ [ActiveJob] [BackdropJob] [80235c53-382f-43f0-8cf9-62a6407ad43e] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4107
+ [ActiveJob] [BackdropJob] [80235c53-382f-43f0-8cf9-62a6407ad43e] Performed BackdropJob from Inline(default) in 1.33ms
4108
+ [ActiveJob] Enqueued BackdropJob (Job ID: 80235c53-382f-43f0-8cf9-62a6407ad43e) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:07:50.442Z\",\"2015-12-18T19:07:50.448Z\"]}}"
4109
+  (0.1ms) SAVEPOINT active_record_1
4110
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:07:50.453635"], ["id", 980190963]]
4111
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4112
+ [ActiveJob] [BackdropJob] [01cc3144-4899-418e-919c-89eb9f231fdc] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:07:50.448Z\",\"2015-12-18T19:07:50.453Z\"]}}"
4113
+ [ActiveJob] [BackdropJob] [01cc3144-4899-418e-919c-89eb9f231fdc] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4114
+ [ActiveJob] [BackdropJob] [01cc3144-4899-418e-919c-89eb9f231fdc] Performed BackdropJob from Inline(default) in 0.74ms
4115
+ [ActiveJob] Enqueued BackdropJob (Job ID: 01cc3144-4899-418e-919c-89eb9f231fdc) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:07:50.448Z\",\"2015-12-18T19:07:50.453Z\"]}}"
4116
+  (0.1ms) rollback transaction
4117
+  (0.1ms) begin transaction
4118
+ ---------------------------------
4119
+ SomethingTest: test_backdrop_test
4120
+ ---------------------------------
4121
+  (0.0ms) SAVEPOINT active_record_1
4122
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:07:50.458876"], ["updated_at", "2015-12-18 19:07:50.458876"]]
4123
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4124
+  (0.0ms) SAVEPOINT active_record_1
4125
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:07:50.459967"], ["id", 980190963]]
4126
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4127
+  (0.0ms) SAVEPOINT active_record_1
4128
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:07:50.460984"], ["id", 980190963]]
4129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4130
+  (0.0ms) SAVEPOINT active_record_1
4131
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:07:50.461909"], ["id", 980190963]]
4132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4133
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4134
+  (0.1ms) rollback transaction
4135
+  (0.1ms) begin transaction
4136
+ ------------------------
4137
+ BackdropTest: test_truth
4138
+ ------------------------
4139
+  (0.0ms) rollback transaction
4140
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
4141
+  (0.2ms) begin transaction
4142
+ ---------------------------------------------
4143
+ ActAsBackdropTest: test_model_act_as_backdrop
4144
+ ---------------------------------------------
4145
+  (0.2ms) SAVEPOINT active_record_1
4146
+ SQL (1.7ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:08:07.530625"], ["updated_at", "2015-12-18 19:08:07.530625"]]
4147
+  (0.5ms) RELEASE SAVEPOINT active_record_1
4148
+ [ActiveJob] [BackdropJob] [da63c61a-699b-4736-917d-bcd279ba25d2] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:08:07.530Z\"],\"updated_at\":[null,\"2015-12-18T19:08:07.530Z\"],\"id\":[null,980190963]}}"
4149
+ [ActiveJob] [BackdropJob] [da63c61a-699b-4736-917d-bcd279ba25d2] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4150
+ [ActiveJob] [BackdropJob] [da63c61a-699b-4736-917d-bcd279ba25d2] Performed BackdropJob from Inline(default) in 14.76ms
4151
+ [ActiveJob] Enqueued BackdropJob (Job ID: da63c61a-699b-4736-917d-bcd279ba25d2) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:08:07.530Z\"],\"updated_at\":[null,\"2015-12-18T19:08:07.530Z\"],\"id\":[null,980190963]}}"
4152
+  (0.2ms) SAVEPOINT active_record_1
4153
+ SQL (0.6ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:08:07.555735"], ["id", 980190963]]
4154
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4155
+ [ActiveJob] [BackdropJob] [43a4e2b2-fb12-4251-965e-c5f5349a141a] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:08:07.530Z\",\"2015-12-18T19:08:07.555Z\"]}}"
4156
+ [ActiveJob] [BackdropJob] [43a4e2b2-fb12-4251-965e-c5f5349a141a] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4157
+ [ActiveJob] [BackdropJob] [43a4e2b2-fb12-4251-965e-c5f5349a141a] Performed BackdropJob from Inline(default) in 1.72ms
4158
+ [ActiveJob] Enqueued BackdropJob (Job ID: 43a4e2b2-fb12-4251-965e-c5f5349a141a) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:08:07.530Z\",\"2015-12-18T19:08:07.555Z\"]}}"
4159
+  (0.1ms) SAVEPOINT active_record_1
4160
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:08:07.562290"], ["id", 980190963]]
4161
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4162
+ [ActiveJob] [BackdropJob] [c041337c-0660-4f7a-97d1-1a6a11a0cc63] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:08:07.555Z\",\"2015-12-18T19:08:07.562Z\"]}}"
4163
+ [ActiveJob] [BackdropJob] [c041337c-0660-4f7a-97d1-1a6a11a0cc63] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4164
+ [ActiveJob] [BackdropJob] [c041337c-0660-4f7a-97d1-1a6a11a0cc63] Performed BackdropJob from Inline(default) in 1.37ms
4165
+ [ActiveJob] Enqueued BackdropJob (Job ID: c041337c-0660-4f7a-97d1-1a6a11a0cc63) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:08:07.555Z\",\"2015-12-18T19:08:07.562Z\"]}}"
4166
+  (0.1ms) SAVEPOINT active_record_1
4167
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:08:07.567290"], ["id", 980190963]]
4168
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4169
+ [ActiveJob] [BackdropJob] [397f16dc-0b10-4b42-828a-a586c3a39988] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:08:07.562Z\",\"2015-12-18T19:08:07.567Z\"]}}"
4170
+ [ActiveJob] [BackdropJob] [397f16dc-0b10-4b42-828a-a586c3a39988] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4171
+ [ActiveJob] [BackdropJob] [397f16dc-0b10-4b42-828a-a586c3a39988] Performed BackdropJob from Inline(default) in 0.57ms
4172
+ [ActiveJob] Enqueued BackdropJob (Job ID: 397f16dc-0b10-4b42-828a-a586c3a39988) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:08:07.562Z\",\"2015-12-18T19:08:07.567Z\"]}}"
4173
+  (0.1ms) rollback transaction
4174
+  (0.0ms) begin transaction
4175
+ ---------------------------------
4176
+ SomethingTest: test_backdrop_test
4177
+ ---------------------------------
4178
+  (0.0ms) SAVEPOINT active_record_1
4179
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:08:07.571271"], ["updated_at", "2015-12-18 19:08:07.571271"]]
4180
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4181
+  (0.0ms) SAVEPOINT active_record_1
4182
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:08:07.572345"], ["id", 980190963]]
4183
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4184
+  (0.0ms) SAVEPOINT active_record_1
4185
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:08:07.573314"], ["id", 980190963]]
4186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4187
+  (0.0ms) SAVEPOINT active_record_1
4188
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:08:07.574255"], ["id", 980190963]]
4189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4190
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4191
+  (0.1ms) rollback transaction
4192
+  (0.1ms) begin transaction
4193
+ ------------------------
4194
+ BackdropTest: test_truth
4195
+ ------------------------
4196
+  (0.0ms) rollback transaction
4197
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
4198
+  (0.3ms) begin transaction
4199
+ ---------------------------------
4200
+ SomethingTest: test_backdrop_test
4201
+ ---------------------------------
4202
+  (0.1ms) SAVEPOINT active_record_1
4203
+ SQL (1.4ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:10:11.605142"], ["updated_at", "2015-12-18 19:10:11.605142"]]
4204
+  (0.4ms) RELEASE SAVEPOINT active_record_1
4205
+  (0.3ms) SAVEPOINT active_record_1
4206
+ SQL (0.7ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:10:11.613226"], ["id", 980190963]]
4207
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4208
+  (0.1ms) SAVEPOINT active_record_1
4209
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:10:11.622169"], ["id", 980190963]]
4210
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4211
+  (0.1ms) SAVEPOINT active_record_1
4212
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something inside your model"], ["updated_at", "2015-12-18 19:10:11.624830"], ["id", 980190963]]
4213
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4214
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4215
+  (0.1ms) rollback transaction
4216
+  (0.1ms) begin transaction
4217
+ ---------------------------------------------
4218
+ ActAsBackdropTest: test_model_act_as_backdrop
4219
+ ---------------------------------------------
4220
+  (0.0ms) SAVEPOINT active_record_1
4221
+ SQL (0.2ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:10:11.629354"], ["updated_at", "2015-12-18 19:10:11.629354"]]
4222
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4223
+ [ActiveJob] [BackdropJob] [a94d51c6-ba1b-4e4d-a70e-24c4614794a3] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:10:11.629Z\"],\"updated_at\":[null,\"2015-12-18T19:10:11.629Z\"],\"id\":[null,980190963]}}"
4224
+ [ActiveJob] [BackdropJob] [a94d51c6-ba1b-4e4d-a70e-24c4614794a3] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4225
+ [ActiveJob] [BackdropJob] [a94d51c6-ba1b-4e4d-a70e-24c4614794a3] Performed BackdropJob from Inline(default) in 13.33ms
4226
+ [ActiveJob] Enqueued BackdropJob (Job ID: a94d51c6-ba1b-4e4d-a70e-24c4614794a3) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:10:11.629Z\"],\"updated_at\":[null,\"2015-12-18T19:10:11.629Z\"],\"id\":[null,980190963]}}"
4227
+  (0.1ms) SAVEPOINT active_record_1
4228
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:10:11.649492"], ["id", 980190963]]
4229
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4230
+ [ActiveJob] [BackdropJob] [ec805ef7-2557-4549-a533-55971175d780] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:10:11.629Z\",\"2015-12-18T19:10:11.649Z\"]}}"
4231
+ [ActiveJob] [BackdropJob] [ec805ef7-2557-4549-a533-55971175d780] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4232
+ [ActiveJob] [BackdropJob] [ec805ef7-2557-4549-a533-55971175d780] Performed BackdropJob from Inline(default) in 1.1ms
4233
+ [ActiveJob] Enqueued BackdropJob (Job ID: ec805ef7-2557-4549-a533-55971175d780) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:10:11.629Z\",\"2015-12-18T19:10:11.649Z\"]}}"
4234
+  (0.1ms) SAVEPOINT active_record_1
4235
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:10:11.652861"], ["id", 980190963]]
4236
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4237
+ [ActiveJob] [BackdropJob] [c2c3b866-1642-4511-a7b1-3e2be1c4e15f] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:10:11.649Z\",\"2015-12-18T19:10:11.652Z\"]}}"
4238
+ [ActiveJob] [BackdropJob] [c2c3b866-1642-4511-a7b1-3e2be1c4e15f] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4239
+ [ActiveJob] [BackdropJob] [c2c3b866-1642-4511-a7b1-3e2be1c4e15f] Performed BackdropJob from Inline(default) in 1.03ms
4240
+ [ActiveJob] Enqueued BackdropJob (Job ID: c2c3b866-1642-4511-a7b1-3e2be1c4e15f) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:10:11.649Z\",\"2015-12-18T19:10:11.652Z\"]}}"
4241
+  (0.1ms) SAVEPOINT active_record_1
4242
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:10:11.656541"], ["id", 980190963]]
4243
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4244
+ [ActiveJob] [BackdropJob] [ce07507a-a227-42a6-87a8-ca8d88f56b15] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:10:11.652Z\",\"2015-12-18T19:10:11.656Z\"]}}"
4245
+ [ActiveJob] [BackdropJob] [ce07507a-a227-42a6-87a8-ca8d88f56b15] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4246
+ [ActiveJob] [BackdropJob] [ce07507a-a227-42a6-87a8-ca8d88f56b15] Performed BackdropJob from Inline(default) in 0.77ms
4247
+ [ActiveJob] Enqueued BackdropJob (Job ID: ce07507a-a227-42a6-87a8-ca8d88f56b15) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:10:11.652Z\",\"2015-12-18T19:10:11.656Z\"]}}"
4248
+  (0.3ms) rollback transaction
4249
+  (0.1ms) begin transaction
4250
+ ------------------------
4251
+ BackdropTest: test_truth
4252
+ ------------------------
4253
+  (0.1ms) rollback transaction
4254
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
4255
+  (2.2ms) begin transaction
4256
+ ---------------------------------
4257
+ SomethingTest: test_backdrop_test
4258
+ ---------------------------------
4259
+  (0.1ms) SAVEPOINT active_record_1
4260
+ SQL (6.6ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:10:48.936826"], ["updated_at", "2015-12-18 19:10:48.936826"]]
4261
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4262
+  (0.1ms) SAVEPOINT active_record_1
4263
+ SQL (0.6ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:10:48.948525"], ["id", 980190963]]
4264
+  (0.2ms) RELEASE SAVEPOINT active_record_1
4265
+  (0.1ms) SAVEPOINT active_record_1
4266
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:10:48.955152"], ["id", 980190963]]
4267
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4268
+  (0.0ms) SAVEPOINT active_record_1
4269
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something inside your model"], ["updated_at", "2015-12-18 19:10:48.956904"], ["id", 980190963]]
4270
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4271
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4272
+  (0.1ms) rollback transaction
4273
+  (0.1ms) begin transaction
4274
+ ------------------------
4275
+ BackdropTest: test_truth
4276
+ ------------------------
4277
+  (0.0ms) rollback transaction
4278
+  (0.0ms) begin transaction
4279
+ ---------------------------------------------
4280
+ ActAsBackdropTest: test_model_act_as_backdrop
4281
+ ---------------------------------------------
4282
+  (0.0ms) SAVEPOINT active_record_1
4283
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:10:48.960872"], ["updated_at", "2015-12-18 19:10:48.960872"]]
4284
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4285
+ [ActiveJob] [BackdropJob] [8f680831-ff35-4a2e-af16-f3af8bbf3e98] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:10:48.960Z\"],\"updated_at\":[null,\"2015-12-18T19:10:48.960Z\"],\"id\":[null,980190963]}}"
4286
+ [ActiveJob] [BackdropJob] [8f680831-ff35-4a2e-af16-f3af8bbf3e98] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4287
+ [ActiveJob] [BackdropJob] [8f680831-ff35-4a2e-af16-f3af8bbf3e98] Performed BackdropJob from Inline(default) in 6.87ms
4288
+ [ActiveJob] Enqueued BackdropJob (Job ID: 8f680831-ff35-4a2e-af16-f3af8bbf3e98) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:10:48.960Z\"],\"updated_at\":[null,\"2015-12-18T19:10:48.960Z\"],\"id\":[null,980190963]}}"
4289
+  (0.1ms) SAVEPOINT active_record_1
4290
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:10:48.972324"], ["id", 980190963]]
4291
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4292
+ [ActiveJob] [BackdropJob] [95d923d5-7077-442d-a250-78caf7389131] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:10:48.960Z\",\"2015-12-18T19:10:48.972Z\"]}}"
4293
+ [ActiveJob] [BackdropJob] [95d923d5-7077-442d-a250-78caf7389131] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4294
+ [ActiveJob] [BackdropJob] [95d923d5-7077-442d-a250-78caf7389131] Performed BackdropJob from Inline(default) in 1.49ms
4295
+ [ActiveJob] Enqueued BackdropJob (Job ID: 95d923d5-7077-442d-a250-78caf7389131) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:10:48.960Z\",\"2015-12-18T19:10:48.972Z\"]}}"
4296
+  (0.0ms) SAVEPOINT active_record_1
4297
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:10:48.975969"], ["id", 980190963]]
4298
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4299
+ [ActiveJob] [BackdropJob] [0eb0371e-736c-47e3-a3a5-e5e859f8fdd3] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:10:48.972Z\",\"2015-12-18T19:10:48.975Z\"]}}"
4300
+ [ActiveJob] [BackdropJob] [0eb0371e-736c-47e3-a3a5-e5e859f8fdd3] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4301
+ [ActiveJob] [BackdropJob] [0eb0371e-736c-47e3-a3a5-e5e859f8fdd3] Performed BackdropJob from Inline(default) in 0.69ms
4302
+ [ActiveJob] Enqueued BackdropJob (Job ID: 0eb0371e-736c-47e3-a3a5-e5e859f8fdd3) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:10:48.972Z\",\"2015-12-18T19:10:48.975Z\"]}}"
4303
+  (0.0ms) SAVEPOINT active_record_1
4304
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:10:48.978728"], ["id", 980190963]]
4305
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4306
+ [ActiveJob] [BackdropJob] [b176bd73-2e77-48d1-be7a-bfe9736a3bbf] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:10:48.975Z\",\"2015-12-18T19:10:48.978Z\"]}}"
4307
+ [ActiveJob] [BackdropJob] [b176bd73-2e77-48d1-be7a-bfe9736a3bbf] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4308
+ [ActiveJob] [BackdropJob] [b176bd73-2e77-48d1-be7a-bfe9736a3bbf] Performed BackdropJob from Inline(default) in 0.84ms
4309
+ [ActiveJob] Enqueued BackdropJob (Job ID: b176bd73-2e77-48d1-be7a-bfe9736a3bbf) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:10:48.975Z\",\"2015-12-18T19:10:48.978Z\"]}}"
4310
+  (0.1ms) rollback transaction
4311
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
4312
+  (0.1ms) begin transaction
4313
+ ------------------------
4314
+ BackdropTest: test_truth
4315
+ ------------------------
4316
+  (0.1ms) rollback transaction
4317
+  (0.0ms) begin transaction
4318
+ ---------------------------------------------
4319
+ ActAsBackdropTest: test_model_act_as_backdrop
4320
+ ---------------------------------------------
4321
+  (0.1ms) SAVEPOINT active_record_1
4322
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:11:30.994669"], ["updated_at", "2015-12-18 19:11:30.994669"]]
4323
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4324
+ [ActiveJob] [BackdropJob] [f4fe8fb0-d26c-4842-bb56-3144fd6594ea] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:11:30.994Z\"],\"updated_at\":[null,\"2015-12-18T19:11:30.994Z\"],\"id\":[null,980190963]}}"
4325
+ [ActiveJob] [BackdropJob] [f4fe8fb0-d26c-4842-bb56-3144fd6594ea] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4326
+ [ActiveJob] [BackdropJob] [f4fe8fb0-d26c-4842-bb56-3144fd6594ea] Performed BackdropJob from Inline(default) in 9.06ms
4327
+ [ActiveJob] Enqueued BackdropJob (Job ID: f4fe8fb0-d26c-4842-bb56-3144fd6594ea) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:11:30.994Z\"],\"updated_at\":[null,\"2015-12-18T19:11:30.994Z\"],\"id\":[null,980190963]}}"
4328
+  (0.0ms) SAVEPOINT active_record_1
4329
+ SQL (0.5ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:11:31.017211"], ["id", 980190963]]
4330
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4331
+ [ActiveJob] [BackdropJob] [6315bd59-a62f-42b2-8bda-68228c0090b4] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:11:30.994Z\",\"2015-12-18T19:11:31.017Z\"]}}"
4332
+ [ActiveJob] [BackdropJob] [6315bd59-a62f-42b2-8bda-68228c0090b4] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4333
+ [ActiveJob] [BackdropJob] [6315bd59-a62f-42b2-8bda-68228c0090b4] Performed BackdropJob from Inline(default) in 0.68ms
4334
+ [ActiveJob] Enqueued BackdropJob (Job ID: 6315bd59-a62f-42b2-8bda-68228c0090b4) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:11:30.994Z\",\"2015-12-18T19:11:31.017Z\"]}}"
4335
+  (0.0ms) SAVEPOINT active_record_1
4336
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:11:31.020374"], ["id", 980190963]]
4337
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4338
+ [ActiveJob] [BackdropJob] [cacb8cf1-2ddc-4fb0-8e38-609590ce357b] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:11:31.017Z\",\"2015-12-18T19:11:31.020Z\"]}}"
4339
+ [ActiveJob] [BackdropJob] [cacb8cf1-2ddc-4fb0-8e38-609590ce357b] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4340
+ [ActiveJob] [BackdropJob] [cacb8cf1-2ddc-4fb0-8e38-609590ce357b] Performed BackdropJob from Inline(default) in 0.59ms
4341
+ [ActiveJob] Enqueued BackdropJob (Job ID: cacb8cf1-2ddc-4fb0-8e38-609590ce357b) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:11:31.017Z\",\"2015-12-18T19:11:31.020Z\"]}}"
4342
+  (0.0ms) SAVEPOINT active_record_1
4343
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:11:31.022591"], ["id", 980190963]]
4344
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4345
+ [ActiveJob] [BackdropJob] [a166cfcf-01d9-41ce-abd3-a2fcfa918915] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:11:31.020Z\",\"2015-12-18T19:11:31.022Z\"]}}"
4346
+ [ActiveJob] [BackdropJob] [a166cfcf-01d9-41ce-abd3-a2fcfa918915] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4347
+ [ActiveJob] [BackdropJob] [a166cfcf-01d9-41ce-abd3-a2fcfa918915] Performed BackdropJob from Inline(default) in 0.57ms
4348
+ [ActiveJob] Enqueued BackdropJob (Job ID: a166cfcf-01d9-41ce-abd3-a2fcfa918915) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:11:31.020Z\",\"2015-12-18T19:11:31.022Z\"]}}"
4349
+  (0.1ms) rollback transaction
4350
+  (0.1ms) begin transaction
4351
+ ---------------------------------
4352
+ SomethingTest: test_backdrop_test
4353
+ ---------------------------------
4354
+  (0.0ms) SAVEPOINT active_record_1
4355
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:11:31.026028"], ["updated_at", "2015-12-18 19:11:31.026028"]]
4356
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4357
+ [ActiveJob] [BackdropJob] [94fe7650-1e11-40d8-976f-71cbccc277d9] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:11:31.026Z\"],\"updated_at\":[null,\"2015-12-18T19:11:31.026Z\"],\"id\":[null,980190963]}}"
4358
+ [ActiveJob] [BackdropJob] [94fe7650-1e11-40d8-976f-71cbccc277d9] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4359
+ [ActiveJob] [BackdropJob] [94fe7650-1e11-40d8-976f-71cbccc277d9] Performed BackdropJob from Inline(default) in 0.71ms
4360
+ [ActiveJob] Enqueued BackdropJob (Job ID: 94fe7650-1e11-40d8-976f-71cbccc277d9) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:11:31.026Z\"],\"updated_at\":[null,\"2015-12-18T19:11:31.026Z\"],\"id\":[null,980190963]}}"
4361
+  (0.0ms) SAVEPOINT active_record_1
4362
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:11:31.028835"], ["id", 980190963]]
4363
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4364
+ [ActiveJob] [BackdropJob] [f84f4b9c-6afe-47e5-b6e6-41a95d3bb408] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:11:31.026Z\",\"2015-12-18T19:11:31.028Z\"]}}"
4365
+ [ActiveJob] [BackdropJob] [f84f4b9c-6afe-47e5-b6e6-41a95d3bb408] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4366
+ [ActiveJob] [BackdropJob] [f84f4b9c-6afe-47e5-b6e6-41a95d3bb408] Performed BackdropJob from Inline(default) in 0.56ms
4367
+ [ActiveJob] Enqueued BackdropJob (Job ID: f84f4b9c-6afe-47e5-b6e6-41a95d3bb408) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:11:31.026Z\",\"2015-12-18T19:11:31.028Z\"]}}"
4368
+  (0.0ms) SAVEPOINT active_record_1
4369
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:11:31.031031"], ["id", 980190963]]
4370
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4371
+ [ActiveJob] [BackdropJob] [f6e37d92-93e0-478a-b1be-3f5232d19bbf] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:11:31.028Z\",\"2015-12-18T19:11:31.031Z\"]}}"
4372
+ [ActiveJob] [BackdropJob] [f6e37d92-93e0-478a-b1be-3f5232d19bbf] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4373
+ [ActiveJob] [BackdropJob] [f6e37d92-93e0-478a-b1be-3f5232d19bbf] Performed BackdropJob from Inline(default) in 0.6ms
4374
+ [ActiveJob] Enqueued BackdropJob (Job ID: f6e37d92-93e0-478a-b1be-3f5232d19bbf) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:11:31.028Z\",\"2015-12-18T19:11:31.031Z\"]}}"
4375
+  (0.0ms) SAVEPOINT active_record_1
4376
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something inside your model"], ["updated_at", "2015-12-18 19:11:31.033121"], ["id", 980190963]]
4377
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4378
+ [ActiveJob] [BackdropJob] [765ba8d6-8142-44b1-8325-5a6f7d1d10be] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something inside your model\"],\"updated_at\":[\"2015-12-18T19:11:31.031Z\",\"2015-12-18T19:11:31.033Z\"]}}"
4379
+ [ActiveJob] [BackdropJob] [765ba8d6-8142-44b1-8325-5a6f7d1d10be] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4380
+ [ActiveJob] [BackdropJob] [765ba8d6-8142-44b1-8325-5a6f7d1d10be] Performed BackdropJob from Inline(default) in 0.55ms
4381
+ [ActiveJob] Enqueued BackdropJob (Job ID: 765ba8d6-8142-44b1-8325-5a6f7d1d10be) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something inside your model\"],\"updated_at\":[\"2015-12-18T19:11:31.031Z\",\"2015-12-18T19:11:31.033Z\"]}}"
4382
+  (0.1ms) rollback transaction
4383
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4384
+  (0.1ms) begin transaction
4385
+ ------------------------
4386
+ BackdropTest: test_truth
4387
+ ------------------------
4388
+  (0.1ms) rollback transaction
4389
+  (0.1ms) begin transaction
4390
+ ---------------------------------
4391
+ SomethingTest: test_backdrop_test
4392
+ ---------------------------------
4393
+  (0.1ms) SAVEPOINT active_record_1
4394
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:12:08.428408"], ["updated_at", "2015-12-18 19:12:08.428408"]]
4395
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4396
+ [ActiveJob] [BackdropJob] [504df38f-3139-4762-a7fd-01eb8916451f] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:12:08.428Z\"],\"updated_at\":[null,\"2015-12-18T19:12:08.428Z\"],\"id\":[null,980190963]}}"
4397
+ [ActiveJob] [BackdropJob] [504df38f-3139-4762-a7fd-01eb8916451f] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4398
+ [ActiveJob] [BackdropJob] [504df38f-3139-4762-a7fd-01eb8916451f] Performed BackdropJob from Inline(default) in 6.42ms
4399
+ [ActiveJob] Enqueued BackdropJob (Job ID: 504df38f-3139-4762-a7fd-01eb8916451f) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:12:08.428Z\"],\"updated_at\":[null,\"2015-12-18T19:12:08.428Z\"],\"id\":[null,980190963]}}"
4400
+  (0.0ms) SAVEPOINT active_record_1
4401
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:12:08.440083"], ["id", 980190963]]
4402
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4403
+ [ActiveJob] [BackdropJob] [3634fb03-9bb6-4c72-99d5-7a3b40097864] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:12:08.428Z\",\"2015-12-18T19:12:08.440Z\"]}}"
4404
+ [ActiveJob] [BackdropJob] [3634fb03-9bb6-4c72-99d5-7a3b40097864] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4405
+ [ActiveJob] [BackdropJob] [3634fb03-9bb6-4c72-99d5-7a3b40097864] Performed BackdropJob from Inline(default) in 0.62ms
4406
+ [ActiveJob] Enqueued BackdropJob (Job ID: 3634fb03-9bb6-4c72-99d5-7a3b40097864) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:12:08.428Z\",\"2015-12-18T19:12:08.440Z\"]}}"
4407
+  (0.0ms) SAVEPOINT active_record_1
4408
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:12:08.442693"], ["id", 980190963]]
4409
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4410
+ [ActiveJob] [BackdropJob] [c1f79100-f3eb-4798-a76b-ea6f627b32c1] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:12:08.440Z\",\"2015-12-18T19:12:08.442Z\"]}}"
4411
+ [ActiveJob] [BackdropJob] [c1f79100-f3eb-4798-a76b-ea6f627b32c1] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4412
+ [ActiveJob] [BackdropJob] [c1f79100-f3eb-4798-a76b-ea6f627b32c1] Performed BackdropJob from Inline(default) in 0.52ms
4413
+ [ActiveJob] Enqueued BackdropJob (Job ID: c1f79100-f3eb-4798-a76b-ea6f627b32c1) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:12:08.440Z\",\"2015-12-18T19:12:08.442Z\"]}}"
4414
+  (0.0ms) SAVEPOINT active_record_1
4415
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something inside your model"], ["updated_at", "2015-12-18 19:12:08.444682"], ["id", 980190963]]
4416
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4417
+ [ActiveJob] [BackdropJob] [484e3b0c-83c4-45fe-a3f9-217b551a4041] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something inside your model\"],\"updated_at\":[\"2015-12-18T19:12:08.442Z\",\"2015-12-18T19:12:08.444Z\"]}}"
4418
+ [ActiveJob] [BackdropJob] [484e3b0c-83c4-45fe-a3f9-217b551a4041] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4419
+ [ActiveJob] [BackdropJob] [484e3b0c-83c4-45fe-a3f9-217b551a4041] Performed BackdropJob from Inline(default) in 0.56ms
4420
+ [ActiveJob] Enqueued BackdropJob (Job ID: 484e3b0c-83c4-45fe-a3f9-217b551a4041) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something inside your model\"],\"updated_at\":[\"2015-12-18T19:12:08.442Z\",\"2015-12-18T19:12:08.444Z\"]}}"
4421
+  (0.1ms) rollback transaction
4422
+  (0.1ms) begin transaction
4423
+ ---------------------------------------------
4424
+ ActAsBackdropTest: test_model_act_as_backdrop
4425
+ ---------------------------------------------
4426
+  (0.1ms) SAVEPOINT active_record_1
4427
+ SQL (0.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-18 19:12:08.448236"], ["updated_at", "2015-12-18 19:12:08.448236"]]
4428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4429
+ [ActiveJob] [BackdropJob] [d82fe86d-88fd-4b1b-bc0d-ccb2cc9e95bf] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:12:08.448Z\"],\"updated_at\":[null,\"2015-12-18T19:12:08.448Z\"],\"id\":[null,980190963]}}"
4430
+ [ActiveJob] [BackdropJob] [d82fe86d-88fd-4b1b-bc0d-ccb2cc9e95bf] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4431
+ [ActiveJob] [BackdropJob] [d82fe86d-88fd-4b1b-bc0d-ccb2cc9e95bf] Performed BackdropJob from Inline(default) in 0.54ms
4432
+ [ActiveJob] Enqueued BackdropJob (Job ID: d82fe86d-88fd-4b1b-bc0d-ccb2cc9e95bf) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"created_at\":[null,\"2015-12-18T19:12:08.448Z\"],\"updated_at\":[null,\"2015-12-18T19:12:08.448Z\"],\"id\":[null,980190963]}}"
4433
+  (0.0ms) SAVEPOINT active_record_1
4434
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-18 19:12:08.450888"], ["id", 980190963]]
4435
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4436
+ [ActiveJob] [BackdropJob] [f17fad7b-e991-467b-b90d-668527f2e7aa] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:12:08.448Z\",\"2015-12-18T19:12:08.450Z\"]}}"
4437
+ [ActiveJob] [BackdropJob] [f17fad7b-e991-467b-b90d-668527f2e7aa] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4438
+ [ActiveJob] [BackdropJob] [f17fad7b-e991-467b-b90d-668527f2e7aa] Performed BackdropJob from Inline(default) in 0.58ms
4439
+ [ActiveJob] Enqueued BackdropJob (Job ID: f17fad7b-e991-467b-b90d-668527f2e7aa) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-18T19:12:08.448Z\",\"2015-12-18T19:12:08.450Z\"]}}"
4440
+  (0.0ms) SAVEPOINT active_record_1
4441
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-18 19:12:08.452982"], ["id", 980190963]]
4442
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4443
+ [ActiveJob] [BackdropJob] [7e7ad623-385e-4d4e-acec-b6fa606998f1] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:12:08.450Z\",\"2015-12-18T19:12:08.452Z\"]}}"
4444
+ [ActiveJob] [BackdropJob] [7e7ad623-385e-4d4e-acec-b6fa606998f1] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4445
+ [ActiveJob] [BackdropJob] [7e7ad623-385e-4d4e-acec-b6fa606998f1] Performed BackdropJob from Inline(default) in 0.55ms
4446
+ [ActiveJob] Enqueued BackdropJob (Job ID: 7e7ad623-385e-4d4e-acec-b6fa606998f1) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-18T19:12:08.450Z\",\"2015-12-18T19:12:08.452Z\"]}}"
4447
+  (0.0ms) SAVEPOINT active_record_1
4448
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-18 19:12:08.455030"], ["id", 980190963]]
4449
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4450
+ [ActiveJob] [BackdropJob] [ba67a48e-6b33-4b59-a4f6-80182b1d654a] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:12:08.452Z\",\"2015-12-18T19:12:08.455Z\"]}}"
4451
+ [ActiveJob] [BackdropJob] [ba67a48e-6b33-4b59-a4f6-80182b1d654a] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 980190963]]
4452
+ [ActiveJob] [BackdropJob] [ba67a48e-6b33-4b59-a4f6-80182b1d654a] Performed BackdropJob from Inline(default) in 0.54ms
4453
+ [ActiveJob] Enqueued BackdropJob (Job ID: ba67a48e-6b33-4b59-a4f6-80182b1d654a) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/980190963\",\"changes\":{\"title\":[\"def\",\"something better\"],\"updated_at\":[\"2015-12-18T19:12:08.452Z\",\"2015-12-18T19:12:08.455Z\"]}}"
4454
+  (0.1ms) rollback transaction