act_as_backdrop 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.markdown +37 -0
  4. data/Rakefile +34 -0
  5. data/lib/backdrop.rb +22 -0
  6. data/lib/backdrop/act_as_backdrop.rb +26 -0
  7. data/lib/backdrop/backdrop_job.rb +11 -0
  8. data/lib/backdrop/version.rb +3 -0
  9. data/lib/tasks/backdrop_tasks.rake +4 -0
  10. data/test/act_as_backdrop_test.rb +25 -0
  11. data/test/backdrop_test.rb +7 -0
  12. data/test/dummy/README.rdoc +28 -0
  13. data/test/dummy/Rakefile +6 -0
  14. data/test/dummy/app/assets/javascripts/application.js +13 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  16. data/test/dummy/app/controllers/application_controller.rb +5 -0
  17. data/test/dummy/app/helpers/application_helper.rb +2 -0
  18. data/test/dummy/app/models/something.rb +23 -0
  19. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  20. data/test/dummy/bin/bundle +3 -0
  21. data/test/dummy/bin/rails +4 -0
  22. data/test/dummy/bin/rake +4 -0
  23. data/test/dummy/bin/setup +29 -0
  24. data/test/dummy/config.ru +4 -0
  25. data/test/dummy/config/application.rb +26 -0
  26. data/test/dummy/config/boot.rb +5 -0
  27. data/test/dummy/config/database.yml +25 -0
  28. data/test/dummy/config/environment.rb +5 -0
  29. data/test/dummy/config/environments/development.rb +41 -0
  30. data/test/dummy/config/environments/production.rb +79 -0
  31. data/test/dummy/config/environments/test.rb +42 -0
  32. data/test/dummy/config/initializers/assets.rb +11 -0
  33. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  35. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  36. data/test/dummy/config/initializers/inflections.rb +16 -0
  37. data/test/dummy/config/initializers/mime_types.rb +4 -0
  38. data/test/dummy/config/initializers/session_store.rb +3 -0
  39. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  40. data/test/dummy/config/locales/en.yml +23 -0
  41. data/test/dummy/config/routes.rb +56 -0
  42. data/test/dummy/config/secrets.yml +22 -0
  43. data/test/dummy/db/development.sqlite3 +0 -0
  44. data/test/dummy/db/migrate/20151217194635_create_somethings.rb +9 -0
  45. data/test/dummy/db/migrate/20151217203211_add_check_to_something.rb +5 -0
  46. data/test/dummy/db/schema.rb +23 -0
  47. data/test/dummy/db/test.sqlite3 +0 -0
  48. data/test/dummy/log/development.log +41 -0
  49. data/test/dummy/log/test.log +2279 -0
  50. data/test/dummy/public/404.html +67 -0
  51. data/test/dummy/public/422.html +67 -0
  52. data/test/dummy/public/500.html +66 -0
  53. data/test/dummy/public/favicon.ico +0 -0
  54. data/test/dummy/test/fixtures/somethings.yml +7 -0
  55. data/test/dummy/test/models/something_test.rb +7 -0
  56. data/test/test_helper.rb +19 -0
  57. metadata +175 -0
@@ -0,0 +1,5 @@
1
+ # Load the Rails application.
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the Rails application.
5
+ Rails.application.initialize!
@@ -0,0 +1,41 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
+
12
+ # Show full error reports and disable caching.
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send.
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger.
20
+ config.active_support.deprecation = :log
21
+
22
+ # Raise an error on page load if there are pending migrations.
23
+ config.active_record.migration_error = :page_load
24
+
25
+ # Debug mode disables concatenation and preprocessing of assets.
26
+ # This option may cause significant delays in view rendering with a large
27
+ # number of complex assets.
28
+ config.assets.debug = true
29
+
30
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
31
+ # yet still be able to expire them through the digest params.
32
+ config.assets.digest = true
33
+
34
+ # Adds additional error checking when serving assets at runtime.
35
+ # Checks for improperly declared sprockets dependencies.
36
+ # Raises helpful error messages.
37
+ config.assets.raise_runtime_errors = true
38
+
39
+ # Raises error for missing translations
40
+ # config.action_view.raise_on_missing_translations = true
41
+ end
@@ -0,0 +1,79 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both threaded web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like
20
+ # NGINX, varnish or squid.
21
+ # config.action_dispatch.rack_cache = true
22
+
23
+ # Disable serving static files from the `/public` folder by default since
24
+ # Apache or NGINX already handles this.
25
+ config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
26
+
27
+ # Compress JavaScripts and CSS.
28
+ config.assets.js_compressor = :uglifier
29
+ # config.assets.css_compressor = :sass
30
+
31
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
32
+ config.assets.compile = false
33
+
34
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
35
+ # yet still be able to expire them through the digest params.
36
+ config.assets.digest = true
37
+
38
+ # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
39
+
40
+ # Specifies the header that your server uses for sending files.
41
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
42
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
43
+
44
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
45
+ # config.force_ssl = true
46
+
47
+ # Use the lowest log level to ensure availability of diagnostic information
48
+ # when problems arise.
49
+ config.log_level = :debug
50
+
51
+ # Prepend all log lines with the following tags.
52
+ # config.log_tags = [ :subdomain, :uuid ]
53
+
54
+ # Use a different logger for distributed setups.
55
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
56
+
57
+ # Use a different cache store in production.
58
+ # config.cache_store = :mem_cache_store
59
+
60
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
61
+ # config.action_controller.asset_host = 'http://assets.example.com'
62
+
63
+ # Ignore bad email addresses and do not raise email delivery errors.
64
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
65
+ # config.action_mailer.raise_delivery_errors = false
66
+
67
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
68
+ # the I18n.default_locale when a translation cannot be found).
69
+ config.i18n.fallbacks = true
70
+
71
+ # Send deprecation notices to registered listeners.
72
+ config.active_support.deprecation = :notify
73
+
74
+ # Use default logging formatter so that PID and timestamp are not suppressed.
75
+ config.log_formatter = ::Logger::Formatter.new
76
+
77
+ # Do not dump schema after migrations.
78
+ config.active_record.dump_schema_after_migration = false
79
+ end
@@ -0,0 +1,42 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
37
+ # Print deprecation notices to the stderr.
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Raises error for missing translations
41
+ # config.action_view.raise_on_missing_translations = true
42
+ end
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,56 @@
1
+ Rails.application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: e783a2a85cc0bc717d9f31fd922ff77b85915740f4a604435601072e8add19bf694a121fd1d0a82d9f24ae1a6fd962c5b51957ccc9c2b3b816c56176f2aa3578
15
+
16
+ test:
17
+ secret_key_base: 41925d906c943d366871a38cc92b7c1151fd13eea91b49fdac0205ab9b009afd1dfd689bf6c2d96ecf1ef6d51b64f56731db2e98d767fcdcb3b87e055471040f
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,9 @@
1
+ class CreateSomethings < ActiveRecord::Migration
2
+ def change
3
+ create_table :somethings do |t|
4
+ t.string :title
5
+
6
+ t.timestamps null: false
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,5 @@
1
+ class AddCheckToSomething < ActiveRecord::Migration
2
+ def change
3
+ add_column :somethings, :check, :string
4
+ end
5
+ end
@@ -0,0 +1,23 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20151217203211) do
15
+
16
+ create_table "somethings", force: :cascade do |t|
17
+ t.string "title"
18
+ t.datetime "created_at", null: false
19
+ t.datetime "updated_at", null: false
20
+ t.string "check"
21
+ end
22
+
23
+ end
@@ -0,0 +1,41 @@
1
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateSomethings (20151217194635)
6
+  (0.1ms) begin transaction
7
+  (0.5ms) CREATE TABLE "somethings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151217194635"]]
9
+  (2.8ms) commit transaction
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+ Migrating to AddCheckToSomething (20151217203211)
13
+  (0.1ms) begin transaction
14
+  (0.2ms) ALTER TABLE "somethings" ADD "check" varchar
15
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151217203211"]]
16
+  (0.1ms) rollback transaction
17
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
18
+ Migrating to AddCheckToSomething (20151217203211)
19
+  (0.1ms) begin transaction
20
+  (0.2ms) ALTER TABLE "somethings" ADD "check" varchar
21
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151217203211"]]
22
+  (0.1ms) rollback transaction
23
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
24
+ Migrating to AddCheckToSomething (20151217203211)
25
+  (0.1ms) begin transaction
26
+  (0.2ms) ALTER TABLE "somethings" ADD "check" varchar
27
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151217203211"]]
28
+  (0.1ms) rollback transaction
29
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
30
+ Migrating to AddCheckToSomething (20151217203211)
31
+  (0.1ms) begin transaction
32
+  (0.3ms) ALTER TABLE "somethings" ADD "check" varchar
33
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151217203211"]]
34
+  (0.1ms) rollback transaction
35
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
36
+ Migrating to AddCheckToSomething (20151217203211)
37
+  (0.1ms) begin transaction
38
+  (0.3ms) ALTER TABLE "somethings" ADD "check" varchar
39
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151217203211"]]
40
+  (3.2ms) commit transaction
41
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
@@ -0,0 +1,2279 @@
1
+  (0.2ms) begin transaction
2
+ ------------------------
3
+ BackdropTest: test_truth
4
+ ------------------------
5
+  (0.1ms) rollback transaction
6
+  (0.2ms) begin transaction
7
+ ------------------------
8
+ BackdropTest: test_truth
9
+ ------------------------
10
+  (0.1ms) rollback transaction
11
+  (4.1ms) CREATE TABLE "somethings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
12
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
13
+  (0.1ms) select sqlite_version(*)
14
+  (2.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
15
+  (0.3ms) SELECT version FROM "schema_migrations"
16
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20151217194635')
17
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
18
+  (0.1ms) begin transaction
19
+ ------------------------
20
+ BackdropTest: test_truth
21
+ ------------------------
22
+  (0.1ms) rollback transaction
23
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
24
+  (0.1ms) begin transaction
25
+ ------------------------
26
+ BackdropTest: test_truth
27
+ ------------------------
28
+  (0.0ms) rollback transaction
29
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
30
+  (0.2ms) begin transaction
31
+ ------------------------
32
+ BackdropTest: test_truth
33
+ ------------------------
34
+  (0.1ms) rollback transaction
35
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
36
+  (0.2ms) begin transaction
37
+ ---------------------------------------------
38
+ ActAsBackdropTest: test_model_act_as_backdrop
39
+ ---------------------------------------------
40
+  (0.1ms) rollback transaction
41
+  (0.1ms) begin transaction
42
+ ------------------------
43
+ BackdropTest: test_truth
44
+ ------------------------
45
+  (0.0ms) rollback transaction
46
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
47
+  (0.2ms) begin transaction
48
+ ---------------------------------------------
49
+ ActAsBackdropTest: test_model_act_as_backdrop
50
+ ---------------------------------------------
51
+  (0.1ms) SAVEPOINT active_record_1
52
+ SQL (13.5ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "suxxess"], ["created_at", "2015-12-17 19:57:28.056923"], ["updated_at", "2015-12-17 19:57:28.056923"]]
53
+  (0.1ms) RELEASE SAVEPOINT active_record_1
54
+  (0.2ms) rollback transaction
55
+  (0.1ms) begin transaction
56
+ ------------------------
57
+ BackdropTest: test_truth
58
+ ------------------------
59
+  (0.1ms) rollback transaction
60
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
61
+  (0.2ms) begin transaction
62
+ ------------------------
63
+ BackdropTest: test_truth
64
+ ------------------------
65
+  (0.1ms) rollback transaction
66
+  (0.1ms) begin transaction
67
+ ---------------------------------------------
68
+ ActAsBackdropTest: test_model_act_as_backdrop
69
+ ---------------------------------------------
70
+  (0.1ms) SAVEPOINT active_record_1
71
+ SQL (1.4ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 19:58:42.718558"], ["updated_at", "2015-12-17 19:58:42.718558"]]
72
+  (0.1ms) RELEASE SAVEPOINT active_record_1
73
+  (0.2ms) rollback transaction
74
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
75
+  (0.1ms) begin transaction
76
+ ------------------------
77
+ BackdropTest: test_truth
78
+ ------------------------
79
+  (0.1ms) rollback transaction
80
+  (0.1ms) begin transaction
81
+ ---------------------------------------------
82
+ ActAsBackdropTest: test_model_act_as_backdrop
83
+ ---------------------------------------------
84
+  (0.1ms) SAVEPOINT active_record_1
85
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 19:58:51.058137"], ["updated_at", "2015-12-17 19:58:51.058137"]]
86
+  (0.1ms) RELEASE SAVEPOINT active_record_1
87
+  (0.2ms) rollback transaction
88
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
89
+  (0.3ms) begin transaction
90
+ ---------------------------------------------
91
+ ActAsBackdropTest: test_model_act_as_backdrop
92
+ ---------------------------------------------
93
+  (0.1ms) SAVEPOINT active_record_1
94
+ SQL (0.9ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 19:59:07.021629"], ["updated_at", "2015-12-17 19:59:07.021629"]]
95
+  (0.1ms) RELEASE SAVEPOINT active_record_1
96
+  (0.2ms) rollback transaction
97
+  (0.6ms) begin transaction
98
+ ------------------------
99
+ BackdropTest: test_truth
100
+ ------------------------
101
+  (0.1ms) rollback transaction
102
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
103
+  (0.1ms) begin transaction
104
+ ---------------------------------------------
105
+ ActAsBackdropTest: test_model_act_as_backdrop
106
+ ---------------------------------------------
107
+  (0.0ms) SAVEPOINT active_record_1
108
+ SQL (2.3ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "{}"], ["created_at", "2015-12-17 19:59:57.078824"], ["updated_at", "2015-12-17 19:59:57.078824"]]
109
+  (0.3ms) RELEASE SAVEPOINT active_record_1
110
+  (0.1ms) rollback transaction
111
+  (0.0ms) begin transaction
112
+ ------------------------
113
+ BackdropTest: test_truth
114
+ ------------------------
115
+  (0.0ms) rollback transaction
116
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
117
+  (0.2ms) begin transaction
118
+ ------------------------
119
+ BackdropTest: test_truth
120
+ ------------------------
121
+  (0.1ms) rollback transaction
122
+  (0.1ms) begin transaction
123
+ ---------------------------------------------
124
+ ActAsBackdropTest: test_model_act_as_backdrop
125
+ ---------------------------------------------
126
+  (0.1ms) SAVEPOINT active_record_1
127
+ SQL (1.7ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "{}"], ["created_at", "2015-12-17 20:00:20.060861"], ["updated_at", "2015-12-17 20:00:20.060861"]]
128
+  (0.3ms) RELEASE SAVEPOINT active_record_1
129
+  (0.2ms) rollback transaction
130
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
131
+  (0.2ms) begin transaction
132
+ ------------------------
133
+ BackdropTest: test_truth
134
+ ------------------------
135
+  (0.1ms) rollback transaction
136
+  (0.1ms) begin transaction
137
+ ---------------------------------------------
138
+ ActAsBackdropTest: test_model_act_as_backdrop
139
+ ---------------------------------------------
140
+  (0.1ms) SAVEPOINT active_record_1
141
+ SQL (0.6ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "{}"], ["created_at", "2015-12-17 20:00:24.292550"], ["updated_at", "2015-12-17 20:00:24.292550"]]
142
+  (0.7ms) RELEASE SAVEPOINT active_record_1
143
+  (0.2ms) rollback transaction
144
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
145
+  (0.2ms) begin transaction
146
+ ------------------------
147
+ BackdropTest: test_truth
148
+ ------------------------
149
+  (0.2ms) rollback transaction
150
+  (0.2ms) begin transaction
151
+ ---------------------------------------------
152
+ ActAsBackdropTest: test_model_act_as_backdrop
153
+ ---------------------------------------------
154
+  (0.1ms) SAVEPOINT active_record_1
155
+ SQL (1.9ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 20:01:02.357697"], ["updated_at", "2015-12-17 20:01:02.357697"]]
156
+  (0.3ms) RELEASE SAVEPOINT active_record_1
157
+  (0.4ms) rollback transaction
158
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
159
+  (0.3ms) begin transaction
160
+ ---------------------------------------------
161
+ ActAsBackdropTest: test_model_act_as_backdrop
162
+ ---------------------------------------------
163
+  (0.1ms) SAVEPOINT active_record_1
164
+ SQL (2.5ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 20:01:50.120666"], ["updated_at", "2015-12-17 20:01:50.120666"]]
165
+  (0.4ms) RELEASE SAVEPOINT active_record_1
166
+  (0.2ms) rollback transaction
167
+  (0.1ms) begin transaction
168
+ ------------------------
169
+ BackdropTest: test_truth
170
+ ------------------------
171
+  (0.1ms) rollback transaction
172
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
173
+  (0.2ms) begin transaction
174
+ ---------------------------------------------
175
+ ActAsBackdropTest: test_model_act_as_backdrop
176
+ ---------------------------------------------
177
+  (0.1ms) SAVEPOINT active_record_1
178
+ SQL (2.4ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 20:02:50.068431"], ["updated_at", "2015-12-17 20:02:50.068431"]]
179
+  (0.3ms) RELEASE SAVEPOINT active_record_1
180
+  (0.2ms) rollback transaction
181
+  (0.1ms) begin transaction
182
+ ------------------------
183
+ BackdropTest: test_truth
184
+ ------------------------
185
+  (0.1ms) rollback transaction
186
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
187
+  (0.2ms) begin transaction
188
+ ---------------------------------------------
189
+ ActAsBackdropTest: test_model_act_as_backdrop
190
+ ---------------------------------------------
191
+  (0.1ms) SAVEPOINT active_record_1
192
+ SQL (2.4ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:03:21.098251"], ["updated_at", "2015-12-17 20:03:21.098251"]]
193
+  (0.1ms) RELEASE SAVEPOINT active_record_1
194
+  (0.1ms) SAVEPOINT active_record_1
195
+ SQL (5.8ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:03:21.109294"], ["id", 1]]
196
+  (0.1ms) RELEASE SAVEPOINT active_record_1
197
+  (0.3ms) rollback transaction
198
+  (0.1ms) begin transaction
199
+ ------------------------
200
+ BackdropTest: test_truth
201
+ ------------------------
202
+  (0.1ms) rollback transaction
203
+ ActiveRecord::SchemaMigration Load (1.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
204
+  (2.0ms) begin transaction
205
+ ---------------------------------------------
206
+ ActAsBackdropTest: test_model_act_as_backdrop
207
+ ---------------------------------------------
208
+  (0.1ms) SAVEPOINT active_record_1
209
+ SQL (11.3ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:03:49.867852"], ["updated_at", "2015-12-17 20:03:49.867852"]]
210
+  (0.6ms) RELEASE SAVEPOINT active_record_1
211
+  (0.2ms) SAVEPOINT active_record_1
212
+ SQL (7.9ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:03:49.888605"], ["id", 1]]
213
+  (1.5ms) RELEASE SAVEPOINT active_record_1
214
+  (0.2ms) rollback transaction
215
+  (0.1ms) begin transaction
216
+ ------------------------
217
+ BackdropTest: test_truth
218
+ ------------------------
219
+  (0.2ms) rollback transaction
220
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
221
+  (2.4ms) begin transaction
222
+ ---------------------------------------------
223
+ ActAsBackdropTest: test_model_act_as_backdrop
224
+ ---------------------------------------------
225
+  (0.1ms) SAVEPOINT active_record_1
226
+ SQL (32.8ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:05:30.655847"], ["updated_at", "2015-12-17 20:05:30.655847"]]
227
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
228
+  (0.2ms) rollback transaction
229
+  (0.2ms) begin transaction
230
+ ------------------------
231
+ BackdropTest: test_truth
232
+ ------------------------
233
+  (0.1ms) rollback transaction
234
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
235
+  (0.2ms) begin transaction
236
+ ------------------------
237
+ BackdropTest: test_truth
238
+ ------------------------
239
+  (0.1ms) rollback transaction
240
+  (0.1ms) begin transaction
241
+ ---------------------------------------------
242
+ ActAsBackdropTest: test_model_act_as_backdrop
243
+ ---------------------------------------------
244
+  (0.1ms) SAVEPOINT active_record_1
245
+ SQL (1.7ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:08:51.156001"], ["updated_at", "2015-12-17 20:08:51.156001"]]
246
+  (0.1ms) RELEASE SAVEPOINT active_record_1
247
+  (0.1ms) SAVEPOINT active_record_1
248
+ SQL (0.3ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:08:51.162506"], ["id", 1]]
249
+  (0.1ms) RELEASE SAVEPOINT active_record_1
250
+  (0.2ms) rollback transaction
251
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
252
+  (0.3ms) begin transaction
253
+ ---------------------------------------------
254
+ ActAsBackdropTest: test_model_act_as_backdrop
255
+ ---------------------------------------------
256
+  (0.1ms) SAVEPOINT active_record_1
257
+ SQL (2.2ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:09:26.077349"], ["updated_at", "2015-12-17 20:09:26.077349"]]
258
+  (0.3ms) RELEASE SAVEPOINT active_record_1
259
+  (0.1ms) SAVEPOINT active_record_1
260
+ SQL (0.5ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:09:26.086779"], ["id", 1]]
261
+  (0.1ms) RELEASE SAVEPOINT active_record_1
262
+  (0.3ms) rollback transaction
263
+  (0.2ms) begin transaction
264
+ ------------------------
265
+ BackdropTest: test_truth
266
+ ------------------------
267
+  (0.1ms) rollback transaction
268
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
269
+  (0.1ms) begin transaction
270
+ ---------------------------------------------
271
+ ActAsBackdropTest: test_model_act_as_backdrop
272
+ ---------------------------------------------
273
+  (0.3ms) SAVEPOINT active_record_1
274
+ SQL (1.0ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:09:49.725044"], ["updated_at", "2015-12-17 20:09:49.725044"]]
275
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
276
+  (0.2ms) rollback transaction
277
+  (0.1ms) begin transaction
278
+ ------------------------
279
+ BackdropTest: test_truth
280
+ ------------------------
281
+  (0.1ms) rollback transaction
282
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
283
+  (0.2ms) begin transaction
284
+ ---------------------------------------------
285
+ ActAsBackdropTest: test_model_act_as_backdrop
286
+ ---------------------------------------------
287
+  (0.1ms) SAVEPOINT active_record_1
288
+ SQL (1.6ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:10:13.629657"], ["updated_at", "2015-12-17 20:10:13.629657"]]
289
+  (0.8ms) RELEASE SAVEPOINT active_record_1
290
+  (0.1ms) SAVEPOINT active_record_1
291
+ SQL (0.4ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:10:13.640653"], ["id", 1]]
292
+  (0.1ms) RELEASE SAVEPOINT active_record_1
293
+  (0.4ms) rollback transaction
294
+  (0.1ms) begin transaction
295
+ ------------------------
296
+ BackdropTest: test_truth
297
+ ------------------------
298
+  (0.1ms) rollback transaction
299
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
300
+  (0.2ms) begin transaction
301
+ ---------------------------------------------
302
+ ActAsBackdropTest: test_model_act_as_backdrop
303
+ ---------------------------------------------
304
+  (0.1ms) SAVEPOINT active_record_1
305
+ SQL (1.3ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:10:56.181316"], ["updated_at", "2015-12-17 20:10:56.181316"]]
306
+  (0.2ms) RELEASE SAVEPOINT active_record_1
307
+  (0.1ms) SAVEPOINT active_record_1
308
+ SQL (1.4ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:10:56.188112"], ["id", 1]]
309
+  (0.1ms) RELEASE SAVEPOINT active_record_1
310
+  (0.2ms) rollback transaction
311
+  (0.1ms) begin transaction
312
+ ------------------------
313
+ BackdropTest: test_truth
314
+ ------------------------
315
+  (0.1ms) rollback transaction
316
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
317
+  (1.9ms) begin transaction
318
+ ------------------------
319
+ BackdropTest: test_truth
320
+ ------------------------
321
+  (0.1ms) rollback transaction
322
+  (0.1ms) begin transaction
323
+ ---------------------------------------------
324
+ ActAsBackdropTest: test_model_act_as_backdrop
325
+ ---------------------------------------------
326
+  (0.1ms) SAVEPOINT active_record_1
327
+ SQL (29.2ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:12:34.852579"], ["updated_at", "2015-12-17 20:12:34.852579"]]
328
+  (0.8ms) RELEASE SAVEPOINT active_record_1
329
+  (0.1ms) SAVEPOINT active_record_1
330
+ SQL (0.8ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:12:34.893302"], ["id", 1]]
331
+  (0.4ms) RELEASE SAVEPOINT active_record_1
332
+  (0.2ms) rollback transaction
333
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
334
+  (0.2ms) begin transaction
335
+ ---------------------------------------------
336
+ ActAsBackdropTest: test_model_act_as_backdrop
337
+ ---------------------------------------------
338
+  (0.0ms) SAVEPOINT active_record_1
339
+ SQL (1.9ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:13:19.575552"], ["updated_at", "2015-12-17 20:13:19.575552"]]
340
+  (0.2ms) RELEASE SAVEPOINT active_record_1
341
+  (0.1ms) SAVEPOINT active_record_1
342
+ SQL (1.9ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:13:19.586094"], ["id", 1]]
343
+  (0.1ms) RELEASE SAVEPOINT active_record_1
344
+  (0.1ms) rollback transaction
345
+  (0.0ms) begin transaction
346
+ ------------------------
347
+ BackdropTest: test_truth
348
+ ------------------------
349
+  (0.0ms) rollback transaction
350
+ ActiveRecord::SchemaMigration Load (2.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
351
+  (1.3ms) begin transaction
352
+ ---------------------------------------------
353
+ ActAsBackdropTest: test_model_act_as_backdrop
354
+ ---------------------------------------------
355
+  (0.4ms) SAVEPOINT active_record_1
356
+ SQL (8.9ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:14:06.123406"], ["updated_at", "2015-12-17 20:14:06.123406"]]
357
+  (0.1ms) RELEASE SAVEPOINT active_record_1
358
+  (0.0ms) SAVEPOINT active_record_1
359
+ SQL (0.5ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:14:06.139298"], ["id", 1]]
360
+  (0.1ms) RELEASE SAVEPOINT active_record_1
361
+  (0.1ms) rollback transaction
362
+  (0.0ms) begin transaction
363
+ ------------------------
364
+ BackdropTest: test_truth
365
+ ------------------------
366
+  (0.0ms) rollback transaction
367
+ ActiveRecord::SchemaMigration Load (2.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
368
+  (1.4ms) begin transaction
369
+ ------------------------
370
+ BackdropTest: test_truth
371
+ ------------------------
372
+  (0.1ms) rollback transaction
373
+  (0.2ms) begin transaction
374
+ ---------------------------------------------
375
+ ActAsBackdropTest: test_model_act_as_backdrop
376
+ ---------------------------------------------
377
+  (2.8ms) SAVEPOINT active_record_1
378
+ SQL (13.7ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:14:26.112591"], ["updated_at", "2015-12-17 20:14:26.112591"]]
379
+  (0.9ms) RELEASE SAVEPOINT active_record_1
380
+  (0.2ms) SAVEPOINT active_record_1
381
+ SQL (19.0ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:14:26.140117"], ["id", 1]]
382
+  (0.9ms) RELEASE SAVEPOINT active_record_1
383
+  (2.3ms) rollback transaction
384
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
385
+  (1.7ms) begin transaction
386
+ ------------------------
387
+ BackdropTest: test_truth
388
+ ------------------------
389
+  (0.1ms) rollback transaction
390
+  (0.1ms) begin transaction
391
+ ---------------------------------------------
392
+ ActAsBackdropTest: test_model_act_as_backdrop
393
+ ---------------------------------------------
394
+  (0.1ms) SAVEPOINT active_record_1
395
+ SQL (10.1ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:18:19.429737"], ["updated_at", "2015-12-17 20:18:19.429737"]]
396
+  (0.2ms) RELEASE SAVEPOINT active_record_1
397
+  (0.1ms) SAVEPOINT active_record_1
398
+ SQL (0.4ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:18:19.448167"], ["id", 1]]
399
+  (0.1ms) RELEASE SAVEPOINT active_record_1
400
+  (0.4ms) rollback transaction
401
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
402
+  (2.4ms) begin transaction
403
+ ------------------------
404
+ BackdropTest: test_truth
405
+ ------------------------
406
+  (0.1ms) rollback transaction
407
+  (0.4ms) begin transaction
408
+ ---------------------------------------------
409
+ ActAsBackdropTest: test_model_act_as_backdrop
410
+ ---------------------------------------------
411
+  (0.1ms) SAVEPOINT active_record_1
412
+ SQL (16.0ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:19:09.637436"], ["updated_at", "2015-12-17 20:19:09.637436"]]
413
+  (2.9ms) RELEASE SAVEPOINT active_record_1
414
+  (0.1ms) SAVEPOINT active_record_1
415
+ SQL (11.5ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:19:09.669272"], ["id", 1]]
416
+  (0.7ms) RELEASE SAVEPOINT active_record_1
417
+  (0.4ms) rollback transaction
418
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
419
+  (0.2ms) begin transaction
420
+ ---------------------------------------------
421
+ ActAsBackdropTest: test_model_act_as_backdrop
422
+ ---------------------------------------------
423
+  (0.1ms) SAVEPOINT active_record_1
424
+ SQL (1.7ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:21:15.012218"], ["updated_at", "2015-12-17 20:21:15.012218"]]
425
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
426
+  (0.2ms) rollback transaction
427
+  (0.1ms) begin transaction
428
+ ------------------------
429
+ BackdropTest: test_truth
430
+ ------------------------
431
+  (0.1ms) rollback transaction
432
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
433
+  (0.2ms) begin transaction
434
+ ------------------------
435
+ BackdropTest: test_truth
436
+ ------------------------
437
+  (0.1ms) rollback transaction
438
+  (0.1ms) begin transaction
439
+ ---------------------------------------------
440
+ ActAsBackdropTest: test_model_act_as_backdrop
441
+ ---------------------------------------------
442
+  (0.1ms) SAVEPOINT active_record_1
443
+ SQL (1.4ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:22:52.631838"], ["updated_at", "2015-12-17 20:22:52.631838"]]
444
+ [ActiveJob] Something Load (4.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
445
+ [ActiveJob] [BackdropJob] [be686dc4-7041-42ad-9c23-7effda15a7f7] Performing BackdropJob from Inline(default) with arguments: {:model=>#<Something id: 1, title: "abc", created_at: "2015-12-17 20:22:52", updated_at: "2015-12-17 20:22:52">, :changes=>{}, :class=>"Something"}
446
+ [ActiveJob] [BackdropJob] [be686dc4-7041-42ad-9c23-7effda15a7f7] Performed BackdropJob from Inline(default) in 27.24ms
447
+ [ActiveJob] Enqueued BackdropJob (Job ID: be686dc4-7041-42ad-9c23-7effda15a7f7) to Inline(default) with arguments: {:model=>#<Something id: 1, title: "abc", created_at: "2015-12-17 20:22:52", updated_at: "2015-12-17 20:22:52">, :changes=>{}, :class=>"Something"}
448
+  (1.4ms) RELEASE SAVEPOINT active_record_1
449
+  (0.1ms) SAVEPOINT active_record_1
450
+ SQL (0.8ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:22:52.694283"], ["id", 1]]
451
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
452
+  (0.4ms) rollback transaction
453
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
454
+  (0.2ms) begin transaction
455
+ ------------------------
456
+ BackdropTest: test_truth
457
+ ------------------------
458
+  (0.1ms) rollback transaction
459
+  (0.1ms) begin transaction
460
+ ---------------------------------------------
461
+ ActAsBackdropTest: test_model_act_as_backdrop
462
+ ---------------------------------------------
463
+  (0.1ms) SAVEPOINT active_record_1
464
+ SQL (2.8ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:25:19.098708"], ["updated_at", "2015-12-17 20:25:19.098708"]]
465
+ [ActiveJob] [BackdropJob] [c3012724-9135-4ab9-9687-e7c81bc63fac] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
466
+ [ActiveJob] [BackdropJob] [c3012724-9135-4ab9-9687-e7c81bc63fac] Performed BackdropJob from Inline(default) in 7.64ms
467
+ [ActiveJob] Enqueued BackdropJob (Job ID: c3012724-9135-4ab9-9687-e7c81bc63fac) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
468
+  (1.2ms) RELEASE SAVEPOINT active_record_1
469
+  (0.1ms) SAVEPOINT active_record_1
470
+ SQL (3.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:25:19.125910"], ["id", 1]]
471
+ [ActiveJob] [BackdropJob] [db716fa8-4078-45af-aa22-baef6a87e2a5] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:25:19.098Z\"],\"updated_at\":[null,\"2015-12-17T20:25:19.098Z\"],\"id\":[null,1]}}"
472
+ [ActiveJob] [BackdropJob] [db716fa8-4078-45af-aa22-baef6a87e2a5] Performed BackdropJob from Inline(default) in 0.05ms
473
+ [ActiveJob] Enqueued BackdropJob (Job ID: db716fa8-4078-45af-aa22-baef6a87e2a5) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:25:19.098Z\"],\"updated_at\":[null,\"2015-12-17T20:25:19.098Z\"],\"id\":[null,1]}}"
474
+  (0.1ms) RELEASE SAVEPOINT active_record_1
475
+  (0.1ms) rollback transaction
476
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
477
+  (0.1ms) begin transaction
478
+ ------------------------
479
+ BackdropTest: test_truth
480
+ ------------------------
481
+  (0.0ms) rollback transaction
482
+  (0.1ms) begin transaction
483
+ ---------------------------------------------
484
+ ActAsBackdropTest: test_model_act_as_backdrop
485
+ ---------------------------------------------
486
+  (0.1ms) SAVEPOINT active_record_1
487
+ SQL (1.9ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:27:37.036297"], ["updated_at", "2015-12-17 20:27:37.036297"]]
488
+ [ActiveJob] [BackdropJob] [70bb36ad-c31a-4eda-a9a2-c5b8fe7b366a] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
489
+ [ActiveJob] [BackdropJob] [70bb36ad-c31a-4eda-a9a2-c5b8fe7b366a] Performed BackdropJob from Inline(default) in 8.7ms
490
+ [ActiveJob] Enqueued BackdropJob (Job ID: 70bb36ad-c31a-4eda-a9a2-c5b8fe7b366a) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
491
+  (0.1ms) RELEASE SAVEPOINT active_record_1
492
+  (0.1ms) SAVEPOINT active_record_1
493
+ SQL (0.7ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:27:37.055520"], ["id", 1]]
494
+ [ActiveJob] [BackdropJob] [9d8e44e4-2d1f-4c4b-b034-47d330a20d5e] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:27:37.036Z\"],\"updated_at\":[null,\"2015-12-17T20:27:37.036Z\"],\"id\":[null,1]}}"
495
+ [ActiveJob] [BackdropJob] [9d8e44e4-2d1f-4c4b-b034-47d330a20d5e] Performed BackdropJob from Inline(default) in 0.15ms
496
+ [ActiveJob] Enqueued BackdropJob (Job ID: 9d8e44e4-2d1f-4c4b-b034-47d330a20d5e) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:27:37.036Z\"],\"updated_at\":[null,\"2015-12-17T20:27:37.036Z\"],\"id\":[null,1]}}"
497
+  (0.3ms) RELEASE SAVEPOINT active_record_1
498
+  (0.2ms) rollback transaction
499
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
500
+  (0.1ms) begin transaction
501
+ ---------------------------------------------
502
+ ActAsBackdropTest: test_model_act_as_backdrop
503
+ ---------------------------------------------
504
+  (0.1ms) SAVEPOINT active_record_1
505
+ SQL (0.3ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:27:54.306987"], ["updated_at", "2015-12-17 20:27:54.306987"]]
506
+ [ActiveJob] [BackdropJob] [dda95761-2c30-44ad-816b-f6862cbfe1ad] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
507
+ [ActiveJob] [BackdropJob] [dda95761-2c30-44ad-816b-f6862cbfe1ad] Performed BackdropJob from Inline(default) in 5.35ms
508
+ [ActiveJob] Enqueued BackdropJob (Job ID: dda95761-2c30-44ad-816b-f6862cbfe1ad) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
509
+  (0.1ms) RELEASE SAVEPOINT active_record_1
510
+  (0.0ms) SAVEPOINT active_record_1
511
+ SQL (0.3ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:27:54.318464"], ["id", 1]]
512
+ [ActiveJob] [BackdropJob] [7c5a7499-d44d-4102-9fb5-5697ce95bd92] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:27:54.306Z\"],\"updated_at\":[null,\"2015-12-17T20:27:54.306Z\"],\"id\":[null,1]}}"
513
+ [ActiveJob] [BackdropJob] [7c5a7499-d44d-4102-9fb5-5697ce95bd92] Performed BackdropJob from Inline(default) in 0.08ms
514
+ [ActiveJob] Enqueued BackdropJob (Job ID: 7c5a7499-d44d-4102-9fb5-5697ce95bd92) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:27:54.306Z\"],\"updated_at\":[null,\"2015-12-17T20:27:54.306Z\"],\"id\":[null,1]}}"
515
+  (0.1ms) RELEASE SAVEPOINT active_record_1
516
+  (0.1ms) rollback transaction
517
+  (0.1ms) begin transaction
518
+ ------------------------
519
+ BackdropTest: test_truth
520
+ ------------------------
521
+  (0.1ms) rollback transaction
522
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
523
+  (0.1ms) begin transaction
524
+ ---------------------------------------------
525
+ ActAsBackdropTest: test_model_act_as_backdrop
526
+ ---------------------------------------------
527
+  (0.1ms) SAVEPOINT active_record_1
528
+ SQL (0.8ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:28:09.507855"], ["updated_at", "2015-12-17 20:28:09.507855"]]
529
+ [ActiveJob] [BackdropJob] [e2682577-f805-49d7-af79-46992e7a5001] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
530
+ [ActiveJob] [BackdropJob] [e2682577-f805-49d7-af79-46992e7a5001] Performed BackdropJob from Inline(default) in 7.02ms
531
+ [ActiveJob] Enqueued BackdropJob (Job ID: e2682577-f805-49d7-af79-46992e7a5001) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
532
+  (0.6ms) RELEASE SAVEPOINT active_record_1
533
+  (0.1ms) SAVEPOINT active_record_1
534
+ SQL (0.6ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:28:09.523529"], ["id", 1]]
535
+ [ActiveJob] [BackdropJob] [e5e3f04b-1a3f-4c53-925a-f99409d5f058] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:28:09.507Z\"],\"updated_at\":[null,\"2015-12-17T20:28:09.507Z\"],\"id\":[null,1]}}"
536
+ [ActiveJob] [BackdropJob] [e5e3f04b-1a3f-4c53-925a-f99409d5f058] Performed BackdropJob from Inline(default) in 0.18ms
537
+ [ActiveJob] Enqueued BackdropJob (Job ID: e5e3f04b-1a3f-4c53-925a-f99409d5f058) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:28:09.507Z\"],\"updated_at\":[null,\"2015-12-17T20:28:09.507Z\"],\"id\":[null,1]}}"
538
+  (0.1ms) RELEASE SAVEPOINT active_record_1
539
+  (0.2ms) rollback transaction
540
+  (0.1ms) begin transaction
541
+ ------------------------
542
+ BackdropTest: test_truth
543
+ ------------------------
544
+  (0.1ms) rollback transaction
545
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
546
+  (0.2ms) begin transaction
547
+ ------------------------
548
+ BackdropTest: test_truth
549
+ ------------------------
550
+  (0.7ms) rollback transaction
551
+  (0.1ms) begin transaction
552
+ ---------------------------------------------
553
+ ActAsBackdropTest: test_model_act_as_backdrop
554
+ ---------------------------------------------
555
+  (0.1ms) SAVEPOINT active_record_1
556
+ SQL (0.7ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:28:19.337777"], ["updated_at", "2015-12-17 20:28:19.337777"]]
557
+ [ActiveJob] [BackdropJob] [d425bf4d-b469-4022-9760-cf9a1a9f966d] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
558
+ [ActiveJob] [BackdropJob] [d425bf4d-b469-4022-9760-cf9a1a9f966d] Performed BackdropJob from Inline(default) in 8.72ms
559
+ [ActiveJob] Enqueued BackdropJob (Job ID: d425bf4d-b469-4022-9760-cf9a1a9f966d) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
560
+  (0.2ms) RELEASE SAVEPOINT active_record_1
561
+  (0.1ms) SAVEPOINT active_record_1
562
+ SQL (0.5ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:28:19.357468"], ["id", 1]]
563
+ [ActiveJob] [BackdropJob] [014395df-6de9-43a5-995a-801fd07c26c5] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:28:19.337Z\"],\"updated_at\":[null,\"2015-12-17T20:28:19.337Z\"],\"id\":[null,1]}}"
564
+ [ActiveJob] [BackdropJob] [014395df-6de9-43a5-995a-801fd07c26c5] Performed BackdropJob from Inline(default) in 0.25ms
565
+ [ActiveJob] Enqueued BackdropJob (Job ID: 014395df-6de9-43a5-995a-801fd07c26c5) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:28:19.337Z\"],\"updated_at\":[null,\"2015-12-17T20:28:19.337Z\"],\"id\":[null,1]}}"
566
+  (0.1ms) RELEASE SAVEPOINT active_record_1
567
+  (0.2ms) rollback transaction
568
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
569
+  (0.2ms) begin transaction
570
+ ---------------------------------------------
571
+ ActAsBackdropTest: test_model_act_as_backdrop
572
+ ---------------------------------------------
573
+  (0.0ms) SAVEPOINT active_record_1
574
+ SQL (0.3ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:28:30.672598"], ["updated_at", "2015-12-17 20:28:30.672598"]]
575
+ [ActiveJob] [BackdropJob] [adc86357-7749-4f9d-b516-b1ffe5e1ce47] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
576
+ [ActiveJob] [BackdropJob] [adc86357-7749-4f9d-b516-b1ffe5e1ce47] Performed BackdropJob from Inline(default) in 3.32ms
577
+ [ActiveJob] Enqueued BackdropJob (Job ID: adc86357-7749-4f9d-b516-b1ffe5e1ce47) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
578
+  (0.1ms) RELEASE SAVEPOINT active_record_1
579
+  (0.0ms) SAVEPOINT active_record_1
580
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:28:30.680723"], ["id", 1]]
581
+ [ActiveJob] [BackdropJob] [eacb0012-d5e7-419a-8aad-4ae2b75d21b7] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:28:30.672Z\"],\"updated_at\":[null,\"2015-12-17T20:28:30.672Z\"],\"id\":[null,1]}}"
582
+ [ActiveJob] [BackdropJob] [eacb0012-d5e7-419a-8aad-4ae2b75d21b7] Performed BackdropJob from Inline(default) in 0.12ms
583
+ [ActiveJob] Enqueued BackdropJob (Job ID: eacb0012-d5e7-419a-8aad-4ae2b75d21b7) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:28:30.672Z\"],\"updated_at\":[null,\"2015-12-17T20:28:30.672Z\"],\"id\":[null,1]}}"
584
+  (0.1ms) RELEASE SAVEPOINT active_record_1
585
+  (0.1ms) rollback transaction
586
+  (0.1ms) begin transaction
587
+ ------------------------
588
+ BackdropTest: test_truth
589
+ ------------------------
590
+  (0.0ms) rollback transaction
591
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
592
+  (0.1ms) begin transaction
593
+ ---------------------------------------------
594
+ ActAsBackdropTest: test_model_act_as_backdrop
595
+ ---------------------------------------------
596
+  (0.1ms) SAVEPOINT active_record_1
597
+ SQL (0.2ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:28:52.307064"], ["updated_at", "2015-12-17 20:28:52.307064"]]
598
+ [ActiveJob] [BackdropJob] [0c87ca99-1c10-4323-a6c6-b2ecae73bb63] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
599
+ [ActiveJob] [BackdropJob] [0c87ca99-1c10-4323-a6c6-b2ecae73bb63] Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
600
+ [ActiveJob] [BackdropJob] [0c87ca99-1c10-4323-a6c6-b2ecae73bb63] Performed BackdropJob from Inline(default) in 6.9ms
601
+ [ActiveJob] Enqueued BackdropJob (Job ID: 0c87ca99-1c10-4323-a6c6-b2ecae73bb63) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
602
+  (0.1ms) RELEASE SAVEPOINT active_record_1
603
+  (0.0ms) SAVEPOINT active_record_1
604
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:28:52.319268"], ["id", 1]]
605
+ [ActiveJob] [BackdropJob] [8f81c520-69a5-45ff-ab6b-2abaa7a94302] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:28:52.307Z\"],\"updated_at\":[null,\"2015-12-17T20:28:52.307Z\"],\"id\":[null,1]}}"
606
+ [ActiveJob] [BackdropJob] [8f81c520-69a5-45ff-ab6b-2abaa7a94302] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
607
+ [ActiveJob] [BackdropJob] [8f81c520-69a5-45ff-ab6b-2abaa7a94302] Performed BackdropJob from Inline(default) in 0.56ms
608
+ [ActiveJob] Enqueued BackdropJob (Job ID: 8f81c520-69a5-45ff-ab6b-2abaa7a94302) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:28:52.307Z\"],\"updated_at\":[null,\"2015-12-17T20:28:52.307Z\"],\"id\":[null,1]}}"
609
+  (0.1ms) RELEASE SAVEPOINT active_record_1
610
+  (0.1ms) rollback transaction
611
+  (0.0ms) begin transaction
612
+ ------------------------
613
+ BackdropTest: test_truth
614
+ ------------------------
615
+  (0.0ms) rollback transaction
616
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
617
+  (0.1ms) begin transaction
618
+ ---------------------------------------------
619
+ ActAsBackdropTest: test_model_act_as_backdrop
620
+ ---------------------------------------------
621
+  (0.1ms) SAVEPOINT active_record_1
622
+ SQL (0.8ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:30:27.931654"], ["updated_at", "2015-12-17 20:30:27.931654"]]
623
+ [ActiveJob] [BackdropJob] [40f35643-882b-4c7e-ae3b-a9c2616857a7] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
624
+ [ActiveJob] [BackdropJob] [40f35643-882b-4c7e-ae3b-a9c2616857a7] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
625
+ [ActiveJob] [BackdropJob] [40f35643-882b-4c7e-ae3b-a9c2616857a7] Performed BackdropJob from Inline(default) in 9.34ms
626
+ [ActiveJob] Enqueued BackdropJob (Job ID: 40f35643-882b-4c7e-ae3b-a9c2616857a7) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
627
+  (0.2ms) RELEASE SAVEPOINT active_record_1
628
+  (0.1ms) SAVEPOINT active_record_1
629
+ SQL (0.5ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:30:27.949302"], ["id", 1]]
630
+ [ActiveJob] [BackdropJob] [ec108efa-217e-4216-a514-c242f54107d1] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:30:27.931Z\"],\"updated_at\":[null,\"2015-12-17T20:30:27.931Z\"],\"id\":[null,1]}}"
631
+ [ActiveJob] [BackdropJob] [ec108efa-217e-4216-a514-c242f54107d1] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
632
+ [ActiveJob] [BackdropJob] [ec108efa-217e-4216-a514-c242f54107d1] Performed BackdropJob from Inline(default) in 0.82ms
633
+ [ActiveJob] Enqueued BackdropJob (Job ID: ec108efa-217e-4216-a514-c242f54107d1) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:30:27.931Z\"],\"updated_at\":[null,\"2015-12-17T20:30:27.931Z\"],\"id\":[null,1]}}"
634
+  (0.1ms) RELEASE SAVEPOINT active_record_1
635
+  (0.1ms) rollback transaction
636
+  (0.1ms) begin transaction
637
+ ------------------------
638
+ BackdropTest: test_truth
639
+ ------------------------
640
+  (0.0ms) rollback transaction
641
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
642
+  (2.5ms) CREATE TABLE "somethings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "check" varchar) 
643
+  (4.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
644
+  (28.4ms) select sqlite_version(*)
645
+  (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
646
+  (0.1ms) SELECT version FROM "schema_migrations"
647
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20151217203211')
648
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20151217194635')
649
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
650
+  (0.2ms) begin transaction
651
+ ------------------------
652
+ BackdropTest: test_truth
653
+ ------------------------
654
+  (0.1ms) rollback transaction
655
+  (0.1ms) begin transaction
656
+ ---------------------------------------------
657
+ ActAsBackdropTest: test_model_act_as_backdrop
658
+ ---------------------------------------------
659
+  (0.1ms) SAVEPOINT active_record_1
660
+ SQL (1.3ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:36:34.846543"], ["updated_at", "2015-12-17 20:36:34.846543"]]
661
+ [ActiveJob] [BackdropJob] [8b65c369-f9d3-4641-b15f-3f67575a3419] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
662
+ [ActiveJob] [BackdropJob] [8b65c369-f9d3-4641-b15f-3f67575a3419] Something Load (0.5ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
663
+ [ActiveJob] [BackdropJob] [8b65c369-f9d3-4641-b15f-3f67575a3419] Performed BackdropJob from Inline(default) in 16.4ms
664
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
665
+  (0.2ms) rollback transaction
666
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
667
+  (0.1ms) begin transaction
668
+ ------------------------
669
+ BackdropTest: test_truth
670
+ ------------------------
671
+  (0.0ms) rollback transaction
672
+  (0.0ms) begin transaction
673
+ ---------------------------------------------
674
+ ActAsBackdropTest: test_model_act_as_backdrop
675
+ ---------------------------------------------
676
+  (0.2ms) SAVEPOINT active_record_1
677
+ SQL (1.0ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:37:22.709046"], ["updated_at", "2015-12-17 20:37:22.709046"]]
678
+ [ActiveJob] [BackdropJob] [5c9f3933-e746-4a81-9908-e5d7cf4850ce] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
679
+ [ActiveJob] [BackdropJob] [5c9f3933-e746-4a81-9908-e5d7cf4850ce] Something Load (0.5ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
680
+ [ActiveJob] [BackdropJob] [5c9f3933-e746-4a81-9908-e5d7cf4850ce] Performed BackdropJob from Inline(default) in 15.7ms
681
+ [ActiveJob] Enqueued BackdropJob (Job ID: 5c9f3933-e746-4a81-9908-e5d7cf4850ce) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
682
+  (0.3ms) RELEASE SAVEPOINT active_record_1
683
+  (0.1ms) SAVEPOINT active_record_1
684
+ SQL (1.0ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:37:22.735811"], ["id", 1]]
685
+ [ActiveJob] [BackdropJob] [6a102754-1a79-4557-b796-ae389f4506fa] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:37:22.709Z\"],\"updated_at\":[null,\"2015-12-17T20:37:22.709Z\"],\"id\":[null,1]}}"
686
+ [ActiveJob] [BackdropJob] [6a102754-1a79-4557-b796-ae389f4506fa] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
687
+ [ActiveJob] [BackdropJob] [6a102754-1a79-4557-b796-ae389f4506fa] Performed BackdropJob from Inline(default) in 1.17ms
688
+ [ActiveJob] Enqueued BackdropJob (Job ID: 6a102754-1a79-4557-b796-ae389f4506fa) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:37:22.709Z\"],\"updated_at\":[null,\"2015-12-17T20:37:22.709Z\"],\"id\":[null,1]}}"
689
+  (0.1ms) RELEASE SAVEPOINT active_record_1
690
+  (0.2ms) rollback transaction
691
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
692
+  (0.1ms) begin transaction
693
+ ------------------------
694
+ BackdropTest: test_truth
695
+ ------------------------
696
+  (0.0ms) rollback transaction
697
+  (0.0ms) begin transaction
698
+ ---------------------------------------------
699
+ ActAsBackdropTest: test_model_act_as_backdrop
700
+ ---------------------------------------------
701
+  (0.1ms) SAVEPOINT active_record_1
702
+ SQL (0.2ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:37:56.891717"], ["updated_at", "2015-12-17 20:37:56.891717"]]
703
+ [ActiveJob] [BackdropJob] [d9139d7d-690b-430a-8d6a-7523d01874d6] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
704
+ [ActiveJob] [BackdropJob] [d9139d7d-690b-430a-8d6a-7523d01874d6] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
705
+ [ActiveJob] [BackdropJob] [d9139d7d-690b-430a-8d6a-7523d01874d6] Performed BackdropJob from Inline(default) in 7.06ms
706
+ [ActiveJob] Enqueued BackdropJob (Job ID: d9139d7d-690b-430a-8d6a-7523d01874d6) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
707
+  (0.1ms) RELEASE SAVEPOINT active_record_1
708
+  (0.0ms) SAVEPOINT active_record_1
709
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:37:56.903757"], ["id", 1]]
710
+ [ActiveJob] [BackdropJob] [380b2a00-3942-4f12-8d3e-162d1c4c0aa6] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:37:56.891Z\"],\"updated_at\":[null,\"2015-12-17T20:37:56.891Z\"],\"id\":[null,1]}}"
711
+ [ActiveJob] [BackdropJob] [380b2a00-3942-4f12-8d3e-162d1c4c0aa6] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
712
+ [ActiveJob] [BackdropJob] [380b2a00-3942-4f12-8d3e-162d1c4c0aa6] Performed BackdropJob from Inline(default) in 0.63ms
713
+ [ActiveJob] Enqueued BackdropJob (Job ID: 380b2a00-3942-4f12-8d3e-162d1c4c0aa6) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:37:56.891Z\"],\"updated_at\":[null,\"2015-12-17T20:37:56.891Z\"],\"id\":[null,1]}}"
714
+  (0.1ms) RELEASE SAVEPOINT active_record_1
715
+  (0.1ms) rollback transaction
716
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
717
+  (0.1ms) begin transaction
718
+ ------------------------
719
+ BackdropTest: test_truth
720
+ ------------------------
721
+  (0.0ms) rollback transaction
722
+  (0.1ms) begin transaction
723
+ ---------------------------------------------
724
+ ActAsBackdropTest: test_model_act_as_backdrop
725
+ ---------------------------------------------
726
+  (0.1ms) SAVEPOINT active_record_1
727
+ SQL (0.3ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:38:24.163793"], ["updated_at", "2015-12-17 20:38:24.163793"]]
728
+ [ActiveJob] [BackdropJob] [b107df3a-d023-4fbc-bee6-e9fcf64ecec5] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
729
+ [ActiveJob] [BackdropJob] [b107df3a-d023-4fbc-bee6-e9fcf64ecec5] Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
730
+ [ActiveJob] [BackdropJob] [b107df3a-d023-4fbc-bee6-e9fcf64ecec5] Performed BackdropJob from Inline(default) in 6.92ms
731
+ [ActiveJob] Enqueued BackdropJob (Job ID: b107df3a-d023-4fbc-bee6-e9fcf64ecec5) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
732
+  (0.1ms) RELEASE SAVEPOINT active_record_1
733
+  (0.0ms) SAVEPOINT active_record_1
734
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:38:24.176128"], ["id", 1]]
735
+ [ActiveJob] [BackdropJob] [1a738a07-91ba-4024-8f79-92836b6f5cf7] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:38:24.163Z\"],\"updated_at\":[null,\"2015-12-17T20:38:24.163Z\"],\"id\":[null,1]}}"
736
+ [ActiveJob] [BackdropJob] [1a738a07-91ba-4024-8f79-92836b6f5cf7] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
737
+ [ActiveJob] [BackdropJob] [1a738a07-91ba-4024-8f79-92836b6f5cf7] Performed BackdropJob from Inline(default) in 0.56ms
738
+ [ActiveJob] Enqueued BackdropJob (Job ID: 1a738a07-91ba-4024-8f79-92836b6f5cf7) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:38:24.163Z\"],\"updated_at\":[null,\"2015-12-17T20:38:24.163Z\"],\"id\":[null,1]}}"
739
+  (0.1ms) RELEASE SAVEPOINT active_record_1
740
+  (0.1ms) rollback transaction
741
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
742
+  (0.3ms) begin transaction
743
+ ---------------------------------------------
744
+ ActAsBackdropTest: test_model_act_as_backdrop
745
+ ---------------------------------------------
746
+  (0.1ms) SAVEPOINT active_record_1
747
+ SQL (2.4ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:40:38.857853"], ["updated_at", "2015-12-17 20:40:38.857853"]]
748
+ [ActiveJob] [BackdropJob] [89e580a3-b282-4706-afa1-2b2d755c53e4] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
749
+ [ActiveJob] [BackdropJob] [89e580a3-b282-4706-afa1-2b2d755c53e4] Something Load (11.4ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
750
+ [ActiveJob] [BackdropJob] [89e580a3-b282-4706-afa1-2b2d755c53e4] Performed BackdropJob from Inline(default) in 62.73ms
751
+ [ActiveJob] Enqueued BackdropJob (Job ID: 89e580a3-b282-4706-afa1-2b2d755c53e4) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
752
+  (0.7ms) RELEASE SAVEPOINT active_record_1
753
+  (0.0ms) SAVEPOINT active_record_1
754
+ SQL (0.9ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:40:38.955306"], ["id", 1]]
755
+ [ActiveJob] [BackdropJob] [47692b00-539b-463c-8f67-afbbb4f43ca9] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:40:38.857Z\"],\"updated_at\":[null,\"2015-12-17T20:40:38.857Z\"],\"id\":[null,1]}}"
756
+ [ActiveJob] [BackdropJob] [47692b00-539b-463c-8f67-afbbb4f43ca9] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
757
+ [ActiveJob] [BackdropJob] [47692b00-539b-463c-8f67-afbbb4f43ca9] Performed BackdropJob from Inline(default) in 1.97ms
758
+ [ActiveJob] Enqueued BackdropJob (Job ID: 47692b00-539b-463c-8f67-afbbb4f43ca9) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:40:38.857Z\"],\"updated_at\":[null,\"2015-12-17T20:40:38.857Z\"],\"id\":[null,1]}}"
759
+  (0.2ms) RELEASE SAVEPOINT active_record_1
760
+  (0.5ms) rollback transaction
761
+  (0.1ms) begin transaction
762
+ ------------------------
763
+ BackdropTest: test_truth
764
+ ------------------------
765
+  (0.1ms) rollback transaction
766
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
767
+  (0.2ms) begin transaction
768
+ ---------------------------------------------
769
+ ActAsBackdropTest: test_model_act_as_backdrop
770
+ ---------------------------------------------
771
+  (0.2ms) SAVEPOINT active_record_1
772
+ SQL (1.9ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:41:04.318969"], ["updated_at", "2015-12-17 20:41:04.318969"]]
773
+ [ActiveJob] [BackdropJob] [f9dddd1d-4f73-4935-a43f-691c9c8134af] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
774
+ [ActiveJob] [BackdropJob] [f9dddd1d-4f73-4935-a43f-691c9c8134af] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
775
+ [ActiveJob] [BackdropJob] [f9dddd1d-4f73-4935-a43f-691c9c8134af] Performed BackdropJob from Inline(default) in 17.73ms
776
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
777
+  (0.2ms) rollback transaction
778
+  (0.1ms) begin transaction
779
+ ------------------------
780
+ BackdropTest: test_truth
781
+ ------------------------
782
+  (0.1ms) rollback transaction
783
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
784
+  (1.6ms) begin transaction
785
+ ---------------------------------------------
786
+ ActAsBackdropTest: test_model_act_as_backdrop
787
+ ---------------------------------------------
788
+  (0.1ms) SAVEPOINT active_record_1
789
+ SQL (6.8ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:41:21.247667"], ["updated_at", "2015-12-17 20:41:21.247667"]]
790
+ [ActiveJob] [BackdropJob] [b2f3c113-292b-4f64-9d6c-c500332ccb39] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
791
+ [ActiveJob] [BackdropJob] [b2f3c113-292b-4f64-9d6c-c500332ccb39] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
792
+ [ActiveJob] [BackdropJob] [b2f3c113-292b-4f64-9d6c-c500332ccb39] Performed BackdropJob from Inline(default) in 15.92ms
793
+ [ActiveJob] Enqueued BackdropJob (Job ID: b2f3c113-292b-4f64-9d6c-c500332ccb39) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
794
+  (0.3ms) RELEASE SAVEPOINT active_record_1
795
+  (0.1ms) SAVEPOINT active_record_1
796
+ SQL (0.5ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:41:21.282226"], ["id", 1]]
797
+ [ActiveJob] [BackdropJob] [6857f335-8017-4ca6-84d7-2ca6ed6c4bf2] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:41:21.247Z\"],\"updated_at\":[null,\"2015-12-17T20:41:21.247Z\"],\"id\":[null,1]}}"
798
+ [ActiveJob] [BackdropJob] [6857f335-8017-4ca6-84d7-2ca6ed6c4bf2] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
799
+ [ActiveJob] [BackdropJob] [6857f335-8017-4ca6-84d7-2ca6ed6c4bf2] Performed BackdropJob from Inline(default) in 1.34ms
800
+ [ActiveJob] Enqueued BackdropJob (Job ID: 6857f335-8017-4ca6-84d7-2ca6ed6c4bf2) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:41:21.247Z\"],\"updated_at\":[null,\"2015-12-17T20:41:21.247Z\"],\"id\":[null,1]}}"
801
+  (0.2ms) RELEASE SAVEPOINT active_record_1
802
+  (0.2ms) rollback transaction
803
+  (0.1ms) begin transaction
804
+ ------------------------
805
+ BackdropTest: test_truth
806
+ ------------------------
807
+  (0.1ms) rollback transaction
808
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
809
+  (0.3ms) begin transaction
810
+ ------------------------
811
+ BackdropTest: test_truth
812
+ ------------------------
813
+  (0.1ms) rollback transaction
814
+  (0.1ms) begin transaction
815
+ ---------------------------------------------
816
+ ActAsBackdropTest: test_model_act_as_backdrop
817
+ ---------------------------------------------
818
+  (0.2ms) SAVEPOINT active_record_1
819
+ SQL (2.5ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:41:40.306219"], ["updated_at", "2015-12-17 20:41:40.306219"]]
820
+ [ActiveJob] [BackdropJob] [e4872605-140c-4fbc-aea2-f86b618e428e] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
821
+ [ActiveJob] [BackdropJob] [e4872605-140c-4fbc-aea2-f86b618e428e] Something Load (1.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
822
+ [ActiveJob] [BackdropJob] [e4872605-140c-4fbc-aea2-f86b618e428e] Performed BackdropJob from Inline(default) in 15.96ms
823
+ [ActiveJob] Enqueued BackdropJob (Job ID: e4872605-140c-4fbc-aea2-f86b618e428e) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
824
+  (0.2ms) RELEASE SAVEPOINT active_record_1
825
+  (0.1ms) SAVEPOINT active_record_1
826
+ SQL (0.9ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:41:40.342000"], ["id", 1]]
827
+ [ActiveJob] [BackdropJob] [61158599-022d-4874-8095-43a415c0c58f] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:41:40.306Z\"],\"updated_at\":[null,\"2015-12-17T20:41:40.306Z\"],\"id\":[null,1]}}"
828
+ [ActiveJob] [BackdropJob] [61158599-022d-4874-8095-43a415c0c58f] Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
829
+ [ActiveJob] [BackdropJob] [61158599-022d-4874-8095-43a415c0c58f] Performed BackdropJob from Inline(default) in 1.88ms
830
+ [ActiveJob] Enqueued BackdropJob (Job ID: 61158599-022d-4874-8095-43a415c0c58f) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:41:40.306Z\"],\"updated_at\":[null,\"2015-12-17T20:41:40.306Z\"],\"id\":[null,1]}}"
831
+  (0.2ms) RELEASE SAVEPOINT active_record_1
832
+  (0.3ms) rollback transaction
833
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
834
+  (2.0ms) begin transaction
835
+ ------------------------
836
+ BackdropTest: test_truth
837
+ ------------------------
838
+  (0.1ms) rollback transaction
839
+  (0.1ms) begin transaction
840
+ ---------------------------------------------
841
+ ActAsBackdropTest: test_model_act_as_backdrop
842
+ ---------------------------------------------
843
+  (0.1ms) SAVEPOINT active_record_1
844
+ SQL (36.9ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:42:54.413468"], ["updated_at", "2015-12-17 20:42:54.413468"]]
845
+ [ActiveJob] [BackdropJob] [4b02b05a-53ac-455f-8c9a-d9bf988347a3] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
846
+ [ActiveJob] [BackdropJob] [4b02b05a-53ac-455f-8c9a-d9bf988347a3] Something Load (29.4ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
847
+ [ActiveJob] [BackdropJob] [4b02b05a-53ac-455f-8c9a-d9bf988347a3] Performed BackdropJob from Inline(default) in 64.25ms
848
+ [ActiveJob] Enqueued BackdropJob (Job ID: 4b02b05a-53ac-455f-8c9a-d9bf988347a3) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
849
+  (0.5ms) RELEASE SAVEPOINT active_record_1
850
+  (0.2ms) SAVEPOINT active_record_1
851
+ SQL (0.8ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:42:54.534826"], ["id", 1]]
852
+ [ActiveJob] [BackdropJob] [e5b56dd7-7146-4736-911b-df0b11577c41] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:42:54.413Z\"],\"updated_at\":[null,\"2015-12-17T20:42:54.413Z\"],\"id\":[null,1]}}"
853
+ [ActiveJob] [BackdropJob] [e5b56dd7-7146-4736-911b-df0b11577c41] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
854
+ [ActiveJob] [BackdropJob] [e5b56dd7-7146-4736-911b-df0b11577c41] Performed BackdropJob from Inline(default) in 1.53ms
855
+ [ActiveJob] Enqueued BackdropJob (Job ID: e5b56dd7-7146-4736-911b-df0b11577c41) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:42:54.413Z\"],\"updated_at\":[null,\"2015-12-17T20:42:54.413Z\"],\"id\":[null,1]}}"
856
+  (0.1ms) RELEASE SAVEPOINT active_record_1
857
+  (0.4ms) rollback transaction
858
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
859
+  (1.3ms) begin transaction
860
+ ---------------------------------------------
861
+ ActAsBackdropTest: test_model_act_as_backdrop
862
+ ---------------------------------------------
863
+  (0.1ms) SAVEPOINT active_record_1
864
+ SQL (30.6ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:43:16.269315"], ["updated_at", "2015-12-17 20:43:16.269315"]]
865
+ [ActiveJob] [BackdropJob] [2498d6c1-bb13-442f-b701-b96fa27de147] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
866
+ [ActiveJob] [BackdropJob] [2498d6c1-bb13-442f-b701-b96fa27de147] Something Load (7.9ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
867
+ [ActiveJob] [BackdropJob] [2498d6c1-bb13-442f-b701-b96fa27de147] Performed BackdropJob from Inline(default) in 52.65ms
868
+ [ActiveJob] Enqueued BackdropJob (Job ID: 2498d6c1-bb13-442f-b701-b96fa27de147) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
869
+  (0.2ms) RELEASE SAVEPOINT active_record_1
870
+  (0.1ms) SAVEPOINT active_record_1
871
+ SQL (2.3ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:43:16.391342"], ["id", 1]]
872
+ [ActiveJob] [BackdropJob] [b0a54728-9f8b-43b4-b886-12f84a7f36e5] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:43:16.269Z\"],\"updated_at\":[null,\"2015-12-17T20:43:16.269Z\"],\"id\":[null,1]}}"
873
+ [ActiveJob] [BackdropJob] [b0a54728-9f8b-43b4-b886-12f84a7f36e5] Something Load (0.7ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
874
+ [ActiveJob] [BackdropJob] [b0a54728-9f8b-43b4-b886-12f84a7f36e5] SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 20:43:16.429106"], ["id", 1]]
875
+ [ActiveJob] [BackdropJob] [b0a54728-9f8b-43b4-b886-12f84a7f36e5] [BackdropJob] [cef534cb-43e3-48fb-ba0a-c4a63419c4b8] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
876
+ [ActiveJob] [BackdropJob] [b0a54728-9f8b-43b4-b886-12f84a7f36e5] [BackdropJob] [cef534cb-43e3-48fb-ba0a-c4a63419c4b8] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
877
+ [ActiveJob] [BackdropJob] [b0a54728-9f8b-43b4-b886-12f84a7f36e5] [BackdropJob] [cef534cb-43e3-48fb-ba0a-c4a63419c4b8] Performed BackdropJob from Inline(default) in 0.66ms
878
+ [ActiveJob] [BackdropJob] [b0a54728-9f8b-43b4-b886-12f84a7f36e5] Enqueued BackdropJob (Job ID: cef534cb-43e3-48fb-ba0a-c4a63419c4b8) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
879
+ [ActiveJob] [BackdropJob] [b0a54728-9f8b-43b4-b886-12f84a7f36e5] Performed BackdropJob from Inline(default) in 13.59ms
880
+ [ActiveJob] Enqueued BackdropJob (Job ID: b0a54728-9f8b-43b4-b886-12f84a7f36e5) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:43:16.269Z\"],\"updated_at\":[null,\"2015-12-17T20:43:16.269Z\"],\"id\":[null,1]}}"
881
+  (0.1ms) RELEASE SAVEPOINT active_record_1
882
+  (0.2ms) rollback transaction
883
+  (0.1ms) begin transaction
884
+ ------------------------
885
+ BackdropTest: test_truth
886
+ ------------------------
887
+  (0.1ms) rollback transaction
888
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
889
+  (0.2ms) begin transaction
890
+ ---------------------------------------------
891
+ ActAsBackdropTest: test_model_act_as_backdrop
892
+ ---------------------------------------------
893
+  (0.1ms) SAVEPOINT active_record_1
894
+ SQL (2.3ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:44:22.932987"], ["updated_at", "2015-12-17 20:44:22.932987"]]
895
+ [ActiveJob] [BackdropJob] [e10e7d51-8e8c-445c-8919-bd14ff415db1] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
896
+ [ActiveJob] [BackdropJob] [e10e7d51-8e8c-445c-8919-bd14ff415db1] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
897
+ [ActiveJob] [BackdropJob] [e10e7d51-8e8c-445c-8919-bd14ff415db1] Performed BackdropJob from Inline(default) in 14.24ms
898
+ [ActiveJob] Enqueued BackdropJob (Job ID: e10e7d51-8e8c-445c-8919-bd14ff415db1) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
899
+  (0.1ms) RELEASE SAVEPOINT active_record_1
900
+  (0.1ms) SAVEPOINT active_record_1
901
+ SQL (0.3ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:44:22.958413"], ["id", 1]]
902
+ [ActiveJob] [BackdropJob] [4121943c-b81d-423d-a22f-d3ccc2d93dea] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:44:22.932Z\"],\"updated_at\":[null,\"2015-12-17T20:44:22.932Z\"],\"id\":[null,1]}}"
903
+ [ActiveJob] [BackdropJob] [4121943c-b81d-423d-a22f-d3ccc2d93dea] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
904
+ [ActiveJob] [BackdropJob] [4121943c-b81d-423d-a22f-d3ccc2d93dea] SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 20:44:22.962304"], ["id", 1]]
905
+ [ActiveJob] [BackdropJob] [4121943c-b81d-423d-a22f-d3ccc2d93dea] [BackdropJob] [6947d1e6-5a4f-4393-911a-de0b486e78ca] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
906
+ [ActiveJob] [BackdropJob] [4121943c-b81d-423d-a22f-d3ccc2d93dea] [BackdropJob] [6947d1e6-5a4f-4393-911a-de0b486e78ca] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
907
+ [ActiveJob] [BackdropJob] [4121943c-b81d-423d-a22f-d3ccc2d93dea] [BackdropJob] [6947d1e6-5a4f-4393-911a-de0b486e78ca] Performed BackdropJob from Inline(default) in 0.56ms
908
+ [ActiveJob] [BackdropJob] [4121943c-b81d-423d-a22f-d3ccc2d93dea] Enqueued BackdropJob (Job ID: 6947d1e6-5a4f-4393-911a-de0b486e78ca) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
909
+ [ActiveJob] [BackdropJob] [4121943c-b81d-423d-a22f-d3ccc2d93dea] Performed BackdropJob from Inline(default) in 4.62ms
910
+ [ActiveJob] Enqueued BackdropJob (Job ID: 4121943c-b81d-423d-a22f-d3ccc2d93dea) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:44:22.932Z\"],\"updated_at\":[null,\"2015-12-17T20:44:22.932Z\"],\"id\":[null,1]}}"
911
+  (0.1ms) RELEASE SAVEPOINT active_record_1
912
+  (0.1ms) rollback transaction
913
+  (0.1ms) begin transaction
914
+ ------------------------
915
+ BackdropTest: test_truth
916
+ ------------------------
917
+  (0.0ms) rollback transaction
918
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
919
+  (0.2ms) begin transaction
920
+ ------------------------
921
+ BackdropTest: test_truth
922
+ ------------------------
923
+  (0.2ms) rollback transaction
924
+  (0.1ms) begin transaction
925
+ ---------------------------------------------
926
+ ActAsBackdropTest: test_model_act_as_backdrop
927
+ ---------------------------------------------
928
+  (0.1ms) SAVEPOINT active_record_1
929
+ SQL (1.7ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:47:24.605421"], ["updated_at", "2015-12-17 20:47:24.605421"]]
930
+ [ActiveJob] [BackdropJob] [444fd40b-98d1-4d8e-b271-d4fa6794a2a4] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
931
+ [ActiveJob] [BackdropJob] [444fd40b-98d1-4d8e-b271-d4fa6794a2a4] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
932
+ [ActiveJob] [BackdropJob] [444fd40b-98d1-4d8e-b271-d4fa6794a2a4] Performed BackdropJob from Inline(default) in 16.53ms
933
+ [ActiveJob] Enqueued BackdropJob (Job ID: 444fd40b-98d1-4d8e-b271-d4fa6794a2a4) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
934
+  (0.3ms) RELEASE SAVEPOINT active_record_1
935
+  (0.1ms) SAVEPOINT active_record_1
936
+ SQL (0.6ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:47:24.633669"], ["id", 1]]
937
+ [ActiveJob] [BackdropJob] [8f0662e5-5d4f-417b-8fad-dd98283dabb1] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:47:24.605Z\"],\"updated_at\":[null,\"2015-12-17T20:47:24.605Z\"],\"id\":[null,1]}}"
938
+ [ActiveJob] [BackdropJob] [8f0662e5-5d4f-417b-8fad-dd98283dabb1] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
939
+ [ActiveJob] [BackdropJob] [8f0662e5-5d4f-417b-8fad-dd98283dabb1] SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 20:47:24.638279"], ["id", 1]]
940
+ [ActiveJob] [BackdropJob] [8f0662e5-5d4f-417b-8fad-dd98283dabb1] [BackdropJob] [67049158-9ba5-4635-9ae3-d7c845c9fecf] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
941
+ [ActiveJob] [BackdropJob] [8f0662e5-5d4f-417b-8fad-dd98283dabb1] [BackdropJob] [67049158-9ba5-4635-9ae3-d7c845c9fecf] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
942
+ [ActiveJob] [BackdropJob] [8f0662e5-5d4f-417b-8fad-dd98283dabb1] [BackdropJob] [67049158-9ba5-4635-9ae3-d7c845c9fecf] Performed BackdropJob from Inline(default) in 1.06ms
943
+ [ActiveJob] [BackdropJob] [8f0662e5-5d4f-417b-8fad-dd98283dabb1] Enqueued BackdropJob (Job ID: 67049158-9ba5-4635-9ae3-d7c845c9fecf) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
944
+ [ActiveJob] [BackdropJob] [8f0662e5-5d4f-417b-8fad-dd98283dabb1] Performed BackdropJob from Inline(default) in 5.6ms
945
+ [ActiveJob] Enqueued BackdropJob (Job ID: 8f0662e5-5d4f-417b-8fad-dd98283dabb1) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:47:24.605Z\"],\"updated_at\":[null,\"2015-12-17T20:47:24.605Z\"],\"id\":[null,1]}}"
946
+  (0.1ms) RELEASE SAVEPOINT active_record_1
947
+  (0.2ms) rollback transaction
948
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
949
+  (0.2ms) begin transaction
950
+ ---------------------------------------------
951
+ ActAsBackdropTest: test_model_act_as_backdrop
952
+ ---------------------------------------------
953
+  (0.1ms) SAVEPOINT active_record_1
954
+ SQL (1.9ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:47:52.122936"], ["updated_at", "2015-12-17 20:47:52.122936"]]
955
+ [ActiveJob] [BackdropJob] [503adcde-739b-466b-ab9a-330fe0ebb555] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
956
+ [ActiveJob] [BackdropJob] [503adcde-739b-466b-ab9a-330fe0ebb555] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
957
+ [ActiveJob] [BackdropJob] [503adcde-739b-466b-ab9a-330fe0ebb555] Performed BackdropJob from Inline(default) in 16.41ms
958
+ [ActiveJob] Enqueued BackdropJob (Job ID: 503adcde-739b-466b-ab9a-330fe0ebb555) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
959
+  (0.1ms) RELEASE SAVEPOINT active_record_1
960
+  (0.1ms) SAVEPOINT active_record_1
961
+ SQL (0.8ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:47:52.151295"], ["id", 1]]
962
+ [ActiveJob] [BackdropJob] [c5789600-f0a6-4a53-abe5-b0058a982985] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:47:52.122Z\"],\"updated_at\":[null,\"2015-12-17T20:47:52.122Z\"],\"id\":[null,1]}}"
963
+ [ActiveJob] [BackdropJob] [c5789600-f0a6-4a53-abe5-b0058a982985] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
964
+ [ActiveJob] [BackdropJob] [c5789600-f0a6-4a53-abe5-b0058a982985] SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 20:47:52.156146"], ["id", 1]]
965
+ [ActiveJob] [BackdropJob] [c5789600-f0a6-4a53-abe5-b0058a982985] [BackdropJob] [7bbb3937-3dd9-4bed-8c8d-09cbcc0a49d2] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
966
+ [ActiveJob] [BackdropJob] [c5789600-f0a6-4a53-abe5-b0058a982985] [BackdropJob] [7bbb3937-3dd9-4bed-8c8d-09cbcc0a49d2] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
967
+ [ActiveJob] [BackdropJob] [c5789600-f0a6-4a53-abe5-b0058a982985] [BackdropJob] [7bbb3937-3dd9-4bed-8c8d-09cbcc0a49d2] Performed BackdropJob from Inline(default) in 1.14ms
968
+ [ActiveJob] [BackdropJob] [c5789600-f0a6-4a53-abe5-b0058a982985] Enqueued BackdropJob (Job ID: 7bbb3937-3dd9-4bed-8c8d-09cbcc0a49d2) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
969
+ [ActiveJob] [BackdropJob] [c5789600-f0a6-4a53-abe5-b0058a982985] Performed BackdropJob from Inline(default) in 5.27ms
970
+ [ActiveJob] Enqueued BackdropJob (Job ID: c5789600-f0a6-4a53-abe5-b0058a982985) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:47:52.122Z\"],\"updated_at\":[null,\"2015-12-17T20:47:52.122Z\"],\"id\":[null,1]}}"
971
+  (0.1ms) RELEASE SAVEPOINT active_record_1
972
+  (0.1ms) rollback transaction
973
+  (0.1ms) begin transaction
974
+ ------------------------
975
+ BackdropTest: test_truth
976
+ ------------------------
977
+  (0.1ms) rollback transaction
978
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
979
+  (0.2ms) begin transaction
980
+ ---------------------------------------------
981
+ ActAsBackdropTest: test_model_act_as_backdrop
982
+ ---------------------------------------------
983
+  (0.1ms) SAVEPOINT active_record_1
984
+ SQL (0.4ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:48:09.768162"], ["updated_at", "2015-12-17 20:48:09.768162"]]
985
+ [ActiveJob] [BackdropJob] [b6f079b9-407a-4296-8281-652eb0372cc9] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
986
+ [ActiveJob] [BackdropJob] [b6f079b9-407a-4296-8281-652eb0372cc9] Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
987
+ [ActiveJob] [BackdropJob] [b6f079b9-407a-4296-8281-652eb0372cc9] Performed BackdropJob from Inline(default) in 7.76ms
988
+ [ActiveJob] Enqueued BackdropJob (Job ID: b6f079b9-407a-4296-8281-652eb0372cc9) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
989
+  (0.2ms) RELEASE SAVEPOINT active_record_1
990
+  (0.0ms) SAVEPOINT active_record_1
991
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:48:09.783164"], ["id", 1]]
992
+ [ActiveJob] [BackdropJob] [622746f2-6407-4998-82a1-180bbbfca3e5] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:48:09.768Z\"],\"updated_at\":[null,\"2015-12-17T20:48:09.768Z\"],\"id\":[null,1]}}"
993
+ [ActiveJob] [BackdropJob] [622746f2-6407-4998-82a1-180bbbfca3e5] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
994
+ [ActiveJob] [BackdropJob] [622746f2-6407-4998-82a1-180bbbfca3e5] SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 20:48:09.785174"], ["id", 1]]
995
+ [ActiveJob] [BackdropJob] [622746f2-6407-4998-82a1-180bbbfca3e5] [BackdropJob] [91b5d339-fffd-4de9-9c0d-3e847a3ccfb7] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
996
+ [ActiveJob] [BackdropJob] [622746f2-6407-4998-82a1-180bbbfca3e5] [BackdropJob] [91b5d339-fffd-4de9-9c0d-3e847a3ccfb7] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
997
+ [ActiveJob] [BackdropJob] [622746f2-6407-4998-82a1-180bbbfca3e5] [BackdropJob] [91b5d339-fffd-4de9-9c0d-3e847a3ccfb7] Performed BackdropJob from Inline(default) in 0.64ms
998
+ [ActiveJob] [BackdropJob] [622746f2-6407-4998-82a1-180bbbfca3e5] Enqueued BackdropJob (Job ID: 91b5d339-fffd-4de9-9c0d-3e847a3ccfb7) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
999
+ [ActiveJob] [BackdropJob] [622746f2-6407-4998-82a1-180bbbfca3e5] Performed BackdropJob from Inline(default) in 2.51ms
1000
+ [ActiveJob] Enqueued BackdropJob (Job ID: 622746f2-6407-4998-82a1-180bbbfca3e5) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:48:09.768Z\"],\"updated_at\":[null,\"2015-12-17T20:48:09.768Z\"],\"id\":[null,1]}}"
1001
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1002
+  (0.1ms) rollback transaction
1003
+  (0.1ms) begin transaction
1004
+ ------------------------
1005
+ BackdropTest: test_truth
1006
+ ------------------------
1007
+  (0.0ms) rollback transaction
1008
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1009
+  (0.1ms) begin transaction
1010
+ ------------------------
1011
+ BackdropTest: test_truth
1012
+ ------------------------
1013
+  (0.0ms) rollback transaction
1014
+  (0.1ms) begin transaction
1015
+ ---------------------------------------------
1016
+ ActAsBackdropTest: test_model_act_as_backdrop
1017
+ ---------------------------------------------
1018
+  (0.1ms) SAVEPOINT active_record_1
1019
+ SQL (0.3ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:50:50.022189"], ["updated_at", "2015-12-17 20:50:50.022189"]]
1020
+ [ActiveJob] [BackdropJob] [63b9ab91-8f71-4d4c-bef0-ea81ac334235] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1021
+ [ActiveJob] [BackdropJob] [63b9ab91-8f71-4d4c-bef0-ea81ac334235] Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1022
+ [ActiveJob] [BackdropJob] [63b9ab91-8f71-4d4c-bef0-ea81ac334235] Performed BackdropJob from Inline(default) in 7.76ms
1023
+ [ActiveJob] Enqueued BackdropJob (Job ID: 63b9ab91-8f71-4d4c-bef0-ea81ac334235) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1024
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1025
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1026
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1027
+  (0.0ms) SAVEPOINT active_record_1
1028
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:50:50.035626"], ["id", 1]]
1029
+ [ActiveJob] [BackdropJob] [c49d3d85-a66f-489d-bc3c-e98cdb9c4eb6] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1030
+ [ActiveJob] [BackdropJob] [c49d3d85-a66f-489d-bc3c-e98cdb9c4eb6] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1031
+ [ActiveJob] [BackdropJob] [c49d3d85-a66f-489d-bc3c-e98cdb9c4eb6] Performed BackdropJob from Inline(default) in 0.69ms
1032
+ [ActiveJob] Enqueued BackdropJob (Job ID: c49d3d85-a66f-489d-bc3c-e98cdb9c4eb6) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1033
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1034
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1035
+  (0.1ms) rollback transaction
1036
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1037
+  (0.2ms) begin transaction
1038
+ ------------------------
1039
+ BackdropTest: test_truth
1040
+ ------------------------
1041
+  (0.1ms) rollback transaction
1042
+  (0.1ms) begin transaction
1043
+ ---------------------------------------------
1044
+ ActAsBackdropTest: test_model_act_as_backdrop
1045
+ ---------------------------------------------
1046
+  (0.1ms) SAVEPOINT active_record_1
1047
+ SQL (0.3ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:51:01.966281"], ["updated_at", "2015-12-17 20:51:01.966281"]]
1048
+ [ActiveJob] [BackdropJob] [7182b93e-38ac-4aee-baef-f79a6364c894] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1049
+ [ActiveJob] [BackdropJob] [7182b93e-38ac-4aee-baef-f79a6364c894] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1050
+ [ActiveJob] [BackdropJob] [7182b93e-38ac-4aee-baef-f79a6364c894] Performed BackdropJob from Inline(default) in 14.94ms
1051
+ [ActiveJob] Enqueued BackdropJob (Job ID: 7182b93e-38ac-4aee-baef-f79a6364c894) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1052
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1053
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1054
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1055
+  (0.0ms) SAVEPOINT active_record_1
1056
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:51:01.989888"], ["id", 1]]
1057
+ [ActiveJob] [BackdropJob] [41c58ee4-fb12-4bce-baf4-09fc4a43213b] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1058
+ [ActiveJob] [BackdropJob] [41c58ee4-fb12-4bce-baf4-09fc4a43213b] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1059
+ [ActiveJob] [BackdropJob] [41c58ee4-fb12-4bce-baf4-09fc4a43213b] Performed BackdropJob from Inline(default) in 0.68ms
1060
+ [ActiveJob] Enqueued BackdropJob (Job ID: 41c58ee4-fb12-4bce-baf4-09fc4a43213b) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1061
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1062
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1063
+  (0.1ms) rollback transaction
1064
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1065
+  (0.2ms) begin transaction
1066
+ ---------------------------------------------
1067
+ ActAsBackdropTest: test_model_act_as_backdrop
1068
+ ---------------------------------------------
1069
+  (0.1ms) SAVEPOINT active_record_1
1070
+ SQL (0.7ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:51:23.853523"], ["updated_at", "2015-12-17 20:51:23.853523"]]
1071
+ [ActiveJob] [BackdropJob] [750d7f6e-b135-4779-9852-2321f40afad9] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1072
+ [ActiveJob] [BackdropJob] [750d7f6e-b135-4779-9852-2321f40afad9] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1073
+ [ActiveJob] [BackdropJob] [750d7f6e-b135-4779-9852-2321f40afad9] Performed BackdropJob from Inline(default) in 13.35ms
1074
+ [ActiveJob] Enqueued BackdropJob (Job ID: 750d7f6e-b135-4779-9852-2321f40afad9) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1075
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1076
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1077
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1078
+  (0.2ms) SAVEPOINT active_record_1
1079
+ SQL (0.6ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:51:23.874650"], ["id", 1]]
1080
+ [ActiveJob] [BackdropJob] [1b35a231-4dff-41d4-8bde-e6ce1bc48856] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1081
+ [ActiveJob] [BackdropJob] [1b35a231-4dff-41d4-8bde-e6ce1bc48856] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1082
+ [ActiveJob] [BackdropJob] [1b35a231-4dff-41d4-8bde-e6ce1bc48856] Performed BackdropJob from Inline(default) in 1.67ms
1083
+ [ActiveJob] Enqueued BackdropJob (Job ID: 1b35a231-4dff-41d4-8bde-e6ce1bc48856) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1084
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1085
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1086
+  (0.2ms) rollback transaction
1087
+  (0.2ms) begin transaction
1088
+ ------------------------
1089
+ BackdropTest: test_truth
1090
+ ------------------------
1091
+  (0.1ms) rollback transaction
1092
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1093
+  (0.1ms) begin transaction
1094
+ ------------------------
1095
+ BackdropTest: test_truth
1096
+ ------------------------
1097
+  (0.2ms) rollback transaction
1098
+  (0.0ms) begin transaction
1099
+ ---------------------------------------------
1100
+ ActAsBackdropTest: test_model_act_as_backdrop
1101
+ ---------------------------------------------
1102
+  (0.1ms) SAVEPOINT active_record_1
1103
+ SQL (0.2ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:51:32.874058"], ["updated_at", "2015-12-17 20:51:32.874058"]]
1104
+ [ActiveJob] [BackdropJob] [a23a586e-36f7-4734-bf70-f7f6068cc0e7] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1105
+ [ActiveJob] [BackdropJob] [a23a586e-36f7-4734-bf70-f7f6068cc0e7] Something Load (0.5ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1106
+ [ActiveJob] [BackdropJob] [a23a586e-36f7-4734-bf70-f7f6068cc0e7] Performed BackdropJob from Inline(default) in 11.64ms
1107
+ [ActiveJob] Enqueued BackdropJob (Job ID: a23a586e-36f7-4734-bf70-f7f6068cc0e7) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1108
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1109
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1110
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1111
+  (0.1ms) SAVEPOINT active_record_1
1112
+ SQL (0.7ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:51:32.897428"], ["id", 1]]
1113
+ [ActiveJob] [BackdropJob] [af213a18-8f90-4840-91b8-882478d8d812] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1114
+ [ActiveJob] [BackdropJob] [af213a18-8f90-4840-91b8-882478d8d812] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1115
+ [ActiveJob] [BackdropJob] [af213a18-8f90-4840-91b8-882478d8d812] Performed BackdropJob from Inline(default) in 1.47ms
1116
+ [ActiveJob] Enqueued BackdropJob (Job ID: af213a18-8f90-4840-91b8-882478d8d812) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1117
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1118
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1119
+  (0.2ms) rollback transaction
1120
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1121
+  (0.2ms) begin transaction
1122
+ ------------------------
1123
+ BackdropTest: test_truth
1124
+ ------------------------
1125
+  (0.1ms) rollback transaction
1126
+  (0.1ms) begin transaction
1127
+ ---------------------------------------------
1128
+ ActAsBackdropTest: test_model_act_as_backdrop
1129
+ ---------------------------------------------
1130
+  (0.1ms) SAVEPOINT active_record_1
1131
+ SQL (0.3ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:51:41.193512"], ["updated_at", "2015-12-17 20:51:41.193512"]]
1132
+ [ActiveJob] [BackdropJob] [090a92c1-542f-4b84-aba0-ace8accdf50c] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1133
+ [ActiveJob] [BackdropJob] [090a92c1-542f-4b84-aba0-ace8accdf50c] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1134
+ [ActiveJob] [BackdropJob] [090a92c1-542f-4b84-aba0-ace8accdf50c] Performed BackdropJob from Inline(default) in 6.94ms
1135
+ [ActiveJob] Enqueued BackdropJob (Job ID: 090a92c1-542f-4b84-aba0-ace8accdf50c) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1136
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1137
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1138
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1139
+  (0.0ms) SAVEPOINT active_record_1
1140
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:51:41.206273"], ["id", 1]]
1141
+ [ActiveJob] [BackdropJob] [5e1be861-a179-4560-aaf6-7789afc9bdef] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1142
+ [ActiveJob] [BackdropJob] [5e1be861-a179-4560-aaf6-7789afc9bdef] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1143
+ [ActiveJob] [BackdropJob] [5e1be861-a179-4560-aaf6-7789afc9bdef] Performed BackdropJob from Inline(default) in 0.73ms
1144
+ [ActiveJob] Enqueued BackdropJob (Job ID: 5e1be861-a179-4560-aaf6-7789afc9bdef) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1145
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1146
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1147
+  (0.1ms) rollback transaction
1148
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1149
+  (0.1ms) begin transaction
1150
+ ------------------------
1151
+ BackdropTest: test_truth
1152
+ ------------------------
1153
+  (0.1ms) rollback transaction
1154
+  (0.1ms) begin transaction
1155
+ ---------------------------------------------
1156
+ ActAsBackdropTest: test_model_act_as_backdrop
1157
+ ---------------------------------------------
1158
+  (0.1ms) SAVEPOINT active_record_1
1159
+ SQL (0.3ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:51:54.061559"], ["updated_at", "2015-12-17 20:51:54.061559"]]
1160
+ [ActiveJob] [BackdropJob] [a3e9ad9b-8e93-4f47-baac-6bbc04274349] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1161
+ [ActiveJob] [BackdropJob] [a3e9ad9b-8e93-4f47-baac-6bbc04274349] Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1162
+ [ActiveJob] [BackdropJob] [a3e9ad9b-8e93-4f47-baac-6bbc04274349] Performed BackdropJob from Inline(default) in 7.74ms
1163
+ [ActiveJob] Enqueued BackdropJob (Job ID: a3e9ad9b-8e93-4f47-baac-6bbc04274349) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1164
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1165
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1166
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1167
+  (0.0ms) SAVEPOINT active_record_1
1168
+ SQL (0.9ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:51:54.080643"], ["id", 1]]
1169
+ [ActiveJob] [BackdropJob] [5543d88b-ea04-4038-95c0-6697df26a7d5] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1170
+ [ActiveJob] [BackdropJob] [5543d88b-ea04-4038-95c0-6697df26a7d5] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1171
+ [ActiveJob] [BackdropJob] [5543d88b-ea04-4038-95c0-6697df26a7d5] Performed BackdropJob from Inline(default) in 0.91ms
1172
+ [ActiveJob] Enqueued BackdropJob (Job ID: 5543d88b-ea04-4038-95c0-6697df26a7d5) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1173
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1174
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1175
+  (0.1ms) rollback transaction
1176
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1177
+  (0.2ms) begin transaction
1178
+ ------------------------
1179
+ BackdropTest: test_truth
1180
+ ------------------------
1181
+  (0.1ms) rollback transaction
1182
+  (0.1ms) begin transaction
1183
+ ---------------------------------------------
1184
+ ActAsBackdropTest: test_model_act_as_backdrop
1185
+ ---------------------------------------------
1186
+  (0.1ms) SAVEPOINT active_record_1
1187
+ SQL (1.8ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:52:21.168969"], ["updated_at", "2015-12-17 20:52:21.168969"]]
1188
+ [ActiveJob] [BackdropJob] [b468a2bc-92c6-4b23-9c2f-7a5edea4660c] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1189
+ [ActiveJob] [BackdropJob] [b468a2bc-92c6-4b23-9c2f-7a5edea4660c] Something Load (0.4ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1190
+ [ActiveJob] [BackdropJob] [b468a2bc-92c6-4b23-9c2f-7a5edea4660c] Performed BackdropJob from Inline(default) in 17.91ms
1191
+ [ActiveJob] Enqueued BackdropJob (Job ID: b468a2bc-92c6-4b23-9c2f-7a5edea4660c) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1192
+  (0.4ms) RELEASE SAVEPOINT active_record_1
1193
+  (0.1ms) SAVEPOINT active_record_1
1194
+ SQL (0.7ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:52:21.197248"], ["id", 1]]
1195
+ [ActiveJob] [BackdropJob] [fdc18681-6e32-4c4b-9e6a-5c0d991c29bc] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:52:21.168Z\"],\"updated_at\":[null,\"2015-12-17T20:52:21.168Z\"],\"id\":[null,1]}}"
1196
+ [ActiveJob] [BackdropJob] [fdc18681-6e32-4c4b-9e6a-5c0d991c29bc] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1197
+ [ActiveJob] [BackdropJob] [fdc18681-6e32-4c4b-9e6a-5c0d991c29bc] SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 20:52:21.201948"], ["id", 1]]
1198
+ [ActiveJob] [BackdropJob] [fdc18681-6e32-4c4b-9e6a-5c0d991c29bc] [BackdropJob] [940a22c1-6abc-4fc0-adef-1024ffc3604e] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1199
+ [ActiveJob] [BackdropJob] [fdc18681-6e32-4c4b-9e6a-5c0d991c29bc] [BackdropJob] [940a22c1-6abc-4fc0-adef-1024ffc3604e] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1200
+ [ActiveJob] [BackdropJob] [fdc18681-6e32-4c4b-9e6a-5c0d991c29bc] [BackdropJob] [940a22c1-6abc-4fc0-adef-1024ffc3604e] Performed BackdropJob from Inline(default) in 1.56ms
1201
+ [ActiveJob] [BackdropJob] [fdc18681-6e32-4c4b-9e6a-5c0d991c29bc] Enqueued BackdropJob (Job ID: 940a22c1-6abc-4fc0-adef-1024ffc3604e) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1202
+ [ActiveJob] [BackdropJob] [fdc18681-6e32-4c4b-9e6a-5c0d991c29bc] Performed BackdropJob from Inline(default) in 5.86ms
1203
+ [ActiveJob] Enqueued BackdropJob (Job ID: fdc18681-6e32-4c4b-9e6a-5c0d991c29bc) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:52:21.168Z\"],\"updated_at\":[null,\"2015-12-17T20:52:21.168Z\"],\"id\":[null,1]}}"
1204
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1205
+  (0.2ms) rollback transaction
1206
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1207
+  (0.1ms) begin transaction
1208
+ ---------------------------------------------
1209
+ ActAsBackdropTest: test_model_act_as_backdrop
1210
+ ---------------------------------------------
1211
+  (0.1ms) SAVEPOINT active_record_1
1212
+ SQL (0.2ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:52:38.163036"], ["updated_at", "2015-12-17 20:52:38.163036"]]
1213
+ [ActiveJob] [BackdropJob] [23994417-60aa-4821-82b8-6dbb36150724] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1214
+ [ActiveJob] [BackdropJob] [23994417-60aa-4821-82b8-6dbb36150724] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1215
+ [ActiveJob] [BackdropJob] [23994417-60aa-4821-82b8-6dbb36150724] Performed BackdropJob from Inline(default) in 7.1ms
1216
+ [ActiveJob] Enqueued BackdropJob (Job ID: 23994417-60aa-4821-82b8-6dbb36150724) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1217
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1218
+  (0.1ms) SAVEPOINT active_record_1
1219
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:52:38.175629"], ["id", 1]]
1220
+ [ActiveJob] [BackdropJob] [eb971c29-5aab-4c01-9555-66237e7fa606] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:52:38.163Z\"],\"updated_at\":[null,\"2015-12-17T20:52:38.163Z\"],\"id\":[null,1]}}"
1221
+ [ActiveJob] [BackdropJob] [eb971c29-5aab-4c01-9555-66237e7fa606] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1222
+ [ActiveJob] [BackdropJob] [eb971c29-5aab-4c01-9555-66237e7fa606] SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 20:52:38.177977"], ["id", 1]]
1223
+ [ActiveJob] [BackdropJob] [eb971c29-5aab-4c01-9555-66237e7fa606] [BackdropJob] [f1c8d2bd-8d3b-4508-bead-6c84dea22eed] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1224
+ [ActiveJob] [BackdropJob] [eb971c29-5aab-4c01-9555-66237e7fa606] [BackdropJob] [f1c8d2bd-8d3b-4508-bead-6c84dea22eed] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1225
+ [ActiveJob] [BackdropJob] [eb971c29-5aab-4c01-9555-66237e7fa606] [BackdropJob] [f1c8d2bd-8d3b-4508-bead-6c84dea22eed] Performed BackdropJob from Inline(default) in 0.79ms
1226
+ [ActiveJob] [BackdropJob] [eb971c29-5aab-4c01-9555-66237e7fa606] Enqueued BackdropJob (Job ID: f1c8d2bd-8d3b-4508-bead-6c84dea22eed) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1227
+ [ActiveJob] [BackdropJob] [eb971c29-5aab-4c01-9555-66237e7fa606] Performed BackdropJob from Inline(default) in 2.87ms
1228
+ [ActiveJob] Enqueued BackdropJob (Job ID: eb971c29-5aab-4c01-9555-66237e7fa606) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:52:38.163Z\"],\"updated_at\":[null,\"2015-12-17T20:52:38.163Z\"],\"id\":[null,1]}}"
1229
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1230
+  (0.2ms) rollback transaction
1231
+  (0.1ms) begin transaction
1232
+ ------------------------
1233
+ BackdropTest: test_truth
1234
+ ------------------------
1235
+  (0.1ms) rollback transaction
1236
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1237
+  (0.1ms) begin transaction
1238
+ ------------------------
1239
+ BackdropTest: test_truth
1240
+ ------------------------
1241
+  (0.0ms) rollback transaction
1242
+  (0.0ms) begin transaction
1243
+ ---------------------------------------------
1244
+ ActAsBackdropTest: test_model_act_as_backdrop
1245
+ ---------------------------------------------
1246
+  (0.1ms) SAVEPOINT active_record_1
1247
+ SQL (0.3ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:52:48.885877"], ["updated_at", "2015-12-17 20:52:48.885877"]]
1248
+ [ActiveJob] [BackdropJob] [063fef30-08de-4d57-ae44-d4da945cd814] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1249
+ [ActiveJob] [BackdropJob] [063fef30-08de-4d57-ae44-d4da945cd814] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1250
+ [ActiveJob] [BackdropJob] [063fef30-08de-4d57-ae44-d4da945cd814] Performed BackdropJob from Inline(default) in 6.77ms
1251
+ [ActiveJob] Enqueued BackdropJob (Job ID: 063fef30-08de-4d57-ae44-d4da945cd814) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1252
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1253
+  (0.0ms) SAVEPOINT active_record_1
1254
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:52:48.897540"], ["id", 1]]
1255
+ [ActiveJob] [BackdropJob] [ebb90570-d9e5-4f67-9169-170c5a39aafb] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:52:48.885Z\"],\"updated_at\":[null,\"2015-12-17T20:52:48.885Z\"],\"id\":[null,1]}}"
1256
+ [ActiveJob] [BackdropJob] [ebb90570-d9e5-4f67-9169-170c5a39aafb] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1257
+ [ActiveJob] [BackdropJob] [ebb90570-d9e5-4f67-9169-170c5a39aafb] SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 20:52:48.899532"], ["id", 1]]
1258
+ [ActiveJob] [BackdropJob] [ebb90570-d9e5-4f67-9169-170c5a39aafb] [BackdropJob] [df33cc96-4f3d-4362-978a-3b89be5757fc] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1259
+ [ActiveJob] [BackdropJob] [ebb90570-d9e5-4f67-9169-170c5a39aafb] [BackdropJob] [df33cc96-4f3d-4362-978a-3b89be5757fc] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1260
+ [ActiveJob] [BackdropJob] [ebb90570-d9e5-4f67-9169-170c5a39aafb] [BackdropJob] [df33cc96-4f3d-4362-978a-3b89be5757fc] Performed BackdropJob from Inline(default) in 0.66ms
1261
+ [ActiveJob] [BackdropJob] [ebb90570-d9e5-4f67-9169-170c5a39aafb] Enqueued BackdropJob (Job ID: df33cc96-4f3d-4362-978a-3b89be5757fc) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1262
+ [ActiveJob] [BackdropJob] [ebb90570-d9e5-4f67-9169-170c5a39aafb] Performed BackdropJob from Inline(default) in 2.78ms
1263
+ [ActiveJob] Enqueued BackdropJob (Job ID: ebb90570-d9e5-4f67-9169-170c5a39aafb) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:52:48.885Z\"],\"updated_at\":[null,\"2015-12-17T20:52:48.885Z\"],\"id\":[null,1]}}"
1264
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1265
+  (0.1ms) rollback transaction
1266
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1267
+  (0.4ms) begin transaction
1268
+ ------------------------
1269
+ BackdropTest: test_truth
1270
+ ------------------------
1271
+  (0.1ms) rollback transaction
1272
+  (0.1ms) begin transaction
1273
+ ---------------------------------------------
1274
+ ActAsBackdropTest: test_model_act_as_backdrop
1275
+ ---------------------------------------------
1276
+  (0.1ms) SAVEPOINT active_record_1
1277
+ SQL (0.2ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:53:02.782823"], ["updated_at", "2015-12-17 20:53:02.782823"]]
1278
+ [ActiveJob] [BackdropJob] [c25f8983-1cae-4977-81f6-a4bee4e2f5dc] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1279
+ [ActiveJob] [BackdropJob] [c25f8983-1cae-4977-81f6-a4bee4e2f5dc] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1280
+ [ActiveJob] [BackdropJob] [c25f8983-1cae-4977-81f6-a4bee4e2f5dc] Performed BackdropJob from Inline(default) in 6.86ms
1281
+ [ActiveJob] Enqueued BackdropJob (Job ID: c25f8983-1cae-4977-81f6-a4bee4e2f5dc) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1282
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1283
+  (0.0ms) SAVEPOINT active_record_1
1284
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:53:02.794610"], ["id", 1]]
1285
+ [ActiveJob] [BackdropJob] [93206c6b-8b1b-4d66-abb0-44862649544d] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:53:02.782Z\"],\"updated_at\":[null,\"2015-12-17T20:53:02.782Z\"],\"id\":[null,1]}}"
1286
+ [ActiveJob] [BackdropJob] [93206c6b-8b1b-4d66-abb0-44862649544d] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1287
+ [ActiveJob] [BackdropJob] [93206c6b-8b1b-4d66-abb0-44862649544d] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 20:53:02.796593"], ["id", 1]]
1288
+ [ActiveJob] [BackdropJob] [93206c6b-8b1b-4d66-abb0-44862649544d] [BackdropJob] [7b5cfdb6-3f75-4885-96c7-17fd706162e3] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1289
+ [ActiveJob] [BackdropJob] [93206c6b-8b1b-4d66-abb0-44862649544d] [BackdropJob] [7b5cfdb6-3f75-4885-96c7-17fd706162e3] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1290
+ [ActiveJob] [BackdropJob] [93206c6b-8b1b-4d66-abb0-44862649544d] [BackdropJob] [7b5cfdb6-3f75-4885-96c7-17fd706162e3] Performed BackdropJob from Inline(default) in 0.65ms
1291
+ [ActiveJob] [BackdropJob] [93206c6b-8b1b-4d66-abb0-44862649544d] Enqueued BackdropJob (Job ID: 7b5cfdb6-3f75-4885-96c7-17fd706162e3) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1292
+ [ActiveJob] [BackdropJob] [93206c6b-8b1b-4d66-abb0-44862649544d] Performed BackdropJob from Inline(default) in 2.78ms
1293
+ [ActiveJob] Enqueued BackdropJob (Job ID: 93206c6b-8b1b-4d66-abb0-44862649544d) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:53:02.782Z\"],\"updated_at\":[null,\"2015-12-17T20:53:02.782Z\"],\"id\":[null,1]}}"
1294
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1295
+  (0.1ms) rollback transaction
1296
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1297
+  (0.2ms) begin transaction
1298
+ ------------------------
1299
+ BackdropTest: test_truth
1300
+ ------------------------
1301
+  (0.1ms) rollback transaction
1302
+  (0.1ms) begin transaction
1303
+ ---------------------------------------------
1304
+ ActAsBackdropTest: test_model_act_as_backdrop
1305
+ ---------------------------------------------
1306
+  (0.1ms) SAVEPOINT active_record_1
1307
+ SQL (0.3ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:53:15.592812"], ["updated_at", "2015-12-17 20:53:15.592812"]]
1308
+ [ActiveJob] [BackdropJob] [fe870675-6e4a-48ae-bf34-2dde951f027d] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1309
+ [ActiveJob] [BackdropJob] [fe870675-6e4a-48ae-bf34-2dde951f027d] Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1310
+ [ActiveJob] [BackdropJob] [fe870675-6e4a-48ae-bf34-2dde951f027d] Performed BackdropJob from Inline(default) in 11.6ms
1311
+ [ActiveJob] Enqueued BackdropJob (Job ID: fe870675-6e4a-48ae-bf34-2dde951f027d) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1312
+  (0.5ms) RELEASE SAVEPOINT active_record_1
1313
+  (0.1ms) SAVEPOINT active_record_1
1314
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:53:15.614306"], ["id", 1]]
1315
+ [ActiveJob] [BackdropJob] [ee54c1a1-378c-4be4-aef5-6f0f6af2afa5] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:53:15.592Z\"],\"updated_at\":[null,\"2015-12-17T20:53:15.592Z\"],\"id\":[null,1]}}"
1316
+ [ActiveJob] [BackdropJob] [ee54c1a1-378c-4be4-aef5-6f0f6af2afa5] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1317
+ [ActiveJob] [BackdropJob] [ee54c1a1-378c-4be4-aef5-6f0f6af2afa5] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 20:53:15.618385"], ["id", 1]]
1318
+ [ActiveJob] [BackdropJob] [ee54c1a1-378c-4be4-aef5-6f0f6af2afa5] [BackdropJob] [0b5d40c7-d6bf-4028-9dac-77427349dc0c] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1319
+ [ActiveJob] [BackdropJob] [ee54c1a1-378c-4be4-aef5-6f0f6af2afa5] [BackdropJob] [0b5d40c7-d6bf-4028-9dac-77427349dc0c] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1320
+ [ActiveJob] [BackdropJob] [ee54c1a1-378c-4be4-aef5-6f0f6af2afa5] [BackdropJob] [0b5d40c7-d6bf-4028-9dac-77427349dc0c] Performed BackdropJob from Inline(default) in 0.71ms
1321
+ [ActiveJob] [BackdropJob] [ee54c1a1-378c-4be4-aef5-6f0f6af2afa5] Enqueued BackdropJob (Job ID: 0b5d40c7-d6bf-4028-9dac-77427349dc0c) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1322
+ [ActiveJob] [BackdropJob] [ee54c1a1-378c-4be4-aef5-6f0f6af2afa5] Performed BackdropJob from Inline(default) in 4.46ms
1323
+ [ActiveJob] Enqueued BackdropJob (Job ID: ee54c1a1-378c-4be4-aef5-6f0f6af2afa5) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:53:15.592Z\"],\"updated_at\":[null,\"2015-12-17T20:53:15.592Z\"],\"id\":[null,1]}}"
1324
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1325
+  (0.1ms) rollback transaction
1326
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1327
+  (0.1ms) begin transaction
1328
+ ---------------------------------------------
1329
+ ActAsBackdropTest: test_model_act_as_backdrop
1330
+ ---------------------------------------------
1331
+  (0.1ms) SAVEPOINT active_record_1
1332
+ SQL (0.2ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:53:48.929134"], ["updated_at", "2015-12-17 20:53:48.929134"]]
1333
+ [ActiveJob] [BackdropJob] [2f816959-b0e7-4e07-add3-a1550f5ef38b] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1334
+ [ActiveJob] [BackdropJob] [2f816959-b0e7-4e07-add3-a1550f5ef38b] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1335
+ [ActiveJob] [BackdropJob] [2f816959-b0e7-4e07-add3-a1550f5ef38b] Performed BackdropJob from Inline(default) in 6.4ms
1336
+ [ActiveJob] Enqueued BackdropJob (Job ID: 2f816959-b0e7-4e07-add3-a1550f5ef38b) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1337
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1338
+  (0.1ms) SAVEPOINT active_record_1
1339
+ SQL (0.4ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:53:48.940318"], ["id", 1]]
1340
+ [ActiveJob] [BackdropJob] [95b71a4c-4fb9-4acc-8537-fe96665b1dd9] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:53:48.929Z\"],\"updated_at\":[null,\"2015-12-17T20:53:48.929Z\"],\"id\":[null,1]}}"
1341
+ [ActiveJob] [BackdropJob] [95b71a4c-4fb9-4acc-8537-fe96665b1dd9] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1342
+ [ActiveJob] [BackdropJob] [95b71a4c-4fb9-4acc-8537-fe96665b1dd9] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 20:53:48.944048"], ["id", 1]]
1343
+ [ActiveJob] [BackdropJob] [95b71a4c-4fb9-4acc-8537-fe96665b1dd9] [BackdropJob] [f3628552-3dce-45eb-8244-215e055bb8e2] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1344
+ [ActiveJob] [BackdropJob] [95b71a4c-4fb9-4acc-8537-fe96665b1dd9] [BackdropJob] [f3628552-3dce-45eb-8244-215e055bb8e2] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1345
+ [ActiveJob] [BackdropJob] [95b71a4c-4fb9-4acc-8537-fe96665b1dd9] [BackdropJob] [f3628552-3dce-45eb-8244-215e055bb8e2] Performed BackdropJob from Inline(default) in 1.09ms
1346
+ [ActiveJob] [BackdropJob] [95b71a4c-4fb9-4acc-8537-fe96665b1dd9] Enqueued BackdropJob (Job ID: f3628552-3dce-45eb-8244-215e055bb8e2) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1347
+ [ActiveJob] [BackdropJob] [95b71a4c-4fb9-4acc-8537-fe96665b1dd9] Performed BackdropJob from Inline(default) in 5.42ms
1348
+ [ActiveJob] Enqueued BackdropJob (Job ID: 95b71a4c-4fb9-4acc-8537-fe96665b1dd9) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:53:48.929Z\"],\"updated_at\":[null,\"2015-12-17T20:53:48.929Z\"],\"id\":[null,1]}}"
1349
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1350
+  (0.2ms) rollback transaction
1351
+  (0.1ms) begin transaction
1352
+ ------------------------
1353
+ BackdropTest: test_truth
1354
+ ------------------------
1355
+  (0.1ms) rollback transaction
1356
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1357
+  (0.3ms) begin transaction
1358
+ ------------------------
1359
+ BackdropTest: test_truth
1360
+ ------------------------
1361
+  (0.1ms) rollback transaction
1362
+  (0.1ms) begin transaction
1363
+ ---------------------------------------------
1364
+ ActAsBackdropTest: test_model_act_as_backdrop
1365
+ ---------------------------------------------
1366
+  (0.1ms) SAVEPOINT active_record_1
1367
+ SQL (0.2ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:53:58.525979"], ["updated_at", "2015-12-17 20:53:58.525979"]]
1368
+ [ActiveJob] [BackdropJob] [1a48b4c4-d61f-4022-875d-6c4213f30433] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1369
+ [ActiveJob] [BackdropJob] [1a48b4c4-d61f-4022-875d-6c4213f30433] Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1370
+ [ActiveJob] [BackdropJob] [1a48b4c4-d61f-4022-875d-6c4213f30433] Performed BackdropJob from Inline(default) in 6.55ms
1371
+ [ActiveJob] Enqueued BackdropJob (Job ID: 1a48b4c4-d61f-4022-875d-6c4213f30433) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1372
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1373
+  (0.0ms) SAVEPOINT active_record_1
1374
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:53:58.537305"], ["id", 1]]
1375
+ [ActiveJob] [BackdropJob] [a2f0d2c5-6d72-47e6-a8e0-1d29aece9b73] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:53:58.525Z\"],\"updated_at\":[null,\"2015-12-17T20:53:58.525Z\"],\"id\":[null,1]}}"
1376
+ [ActiveJob] [BackdropJob] [a2f0d2c5-6d72-47e6-a8e0-1d29aece9b73] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1377
+ [ActiveJob] [BackdropJob] [a2f0d2c5-6d72-47e6-a8e0-1d29aece9b73] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 20:53:58.539251"], ["id", 1]]
1378
+ [ActiveJob] [BackdropJob] [a2f0d2c5-6d72-47e6-a8e0-1d29aece9b73] [BackdropJob] [d2aeec15-db91-4556-bb09-182d62c0eeb5] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1379
+ [ActiveJob] [BackdropJob] [a2f0d2c5-6d72-47e6-a8e0-1d29aece9b73] [BackdropJob] [d2aeec15-db91-4556-bb09-182d62c0eeb5] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1380
+ [ActiveJob] [BackdropJob] [a2f0d2c5-6d72-47e6-a8e0-1d29aece9b73] [BackdropJob] [d2aeec15-db91-4556-bb09-182d62c0eeb5] Performed BackdropJob from Inline(default) in 0.5ms
1381
+ [ActiveJob] [BackdropJob] [a2f0d2c5-6d72-47e6-a8e0-1d29aece9b73] Enqueued BackdropJob (Job ID: d2aeec15-db91-4556-bb09-182d62c0eeb5) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1382
+ [ActiveJob] [BackdropJob] [a2f0d2c5-6d72-47e6-a8e0-1d29aece9b73] Performed BackdropJob from Inline(default) in 2.45ms
1383
+ [ActiveJob] Enqueued BackdropJob (Job ID: a2f0d2c5-6d72-47e6-a8e0-1d29aece9b73) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:53:58.525Z\"],\"updated_at\":[null,\"2015-12-17T20:53:58.525Z\"],\"id\":[null,1]}}"
1384
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1385
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1386
+  (0.1ms) rollback transaction
1387
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1388
+  (0.1ms) begin transaction
1389
+ ---------------------------------------------
1390
+ ActAsBackdropTest: test_model_act_as_backdrop
1391
+ ---------------------------------------------
1392
+  (0.1ms) SAVEPOINT active_record_1
1393
+ SQL (1.4ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:54:14.968215"], ["updated_at", "2015-12-17 20:54:14.968215"]]
1394
+ [ActiveJob] [BackdropJob] [3107f036-24ca-498b-ac11-6d42b7cd9a90] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1395
+ [ActiveJob] [BackdropJob] [3107f036-24ca-498b-ac11-6d42b7cd9a90] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1396
+ [ActiveJob] [BackdropJob] [3107f036-24ca-498b-ac11-6d42b7cd9a90] Performed BackdropJob from Inline(default) in 6.84ms
1397
+ [ActiveJob] Enqueued BackdropJob (Job ID: 3107f036-24ca-498b-ac11-6d42b7cd9a90) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1398
+  (0.5ms) RELEASE SAVEPOINT active_record_1
1399
+  (0.2ms) SAVEPOINT active_record_1
1400
+ SQL (0.3ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:54:14.982925"], ["id", 1]]
1401
+ [ActiveJob] [BackdropJob] [1e91067d-f0dc-4f45-aded-5ef5982bdb4b] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:54:14.968Z\"],\"updated_at\":[null,\"2015-12-17T20:54:14.968Z\"],\"id\":[null,1]}}"
1402
+ [ActiveJob] [BackdropJob] [1e91067d-f0dc-4f45-aded-5ef5982bdb4b] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1403
+ [ActiveJob] [BackdropJob] [1e91067d-f0dc-4f45-aded-5ef5982bdb4b] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 20:54:14.987358"], ["id", 1]]
1404
+ [ActiveJob] [BackdropJob] [1e91067d-f0dc-4f45-aded-5ef5982bdb4b] [BackdropJob] [9c1af2c3-4be3-491c-9994-75726c5e49fb] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1405
+ [ActiveJob] [BackdropJob] [1e91067d-f0dc-4f45-aded-5ef5982bdb4b] [BackdropJob] [9c1af2c3-4be3-491c-9994-75726c5e49fb] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1406
+ [ActiveJob] [BackdropJob] [1e91067d-f0dc-4f45-aded-5ef5982bdb4b] [BackdropJob] [9c1af2c3-4be3-491c-9994-75726c5e49fb] Performed BackdropJob from Inline(default) in 1.28ms
1407
+ [ActiveJob] [BackdropJob] [1e91067d-f0dc-4f45-aded-5ef5982bdb4b] Enqueued BackdropJob (Job ID: 9c1af2c3-4be3-491c-9994-75726c5e49fb) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1408
+ [ActiveJob] [BackdropJob] [1e91067d-f0dc-4f45-aded-5ef5982bdb4b] Performed BackdropJob from Inline(default) in 5.76ms
1409
+ [ActiveJob] Enqueued BackdropJob (Job ID: 1e91067d-f0dc-4f45-aded-5ef5982bdb4b) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:54:14.968Z\"],\"updated_at\":[null,\"2015-12-17T20:54:14.968Z\"],\"id\":[null,1]}}"
1410
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1411
+  (0.2ms) rollback transaction
1412
+  (0.1ms) begin transaction
1413
+ ------------------------
1414
+ BackdropTest: test_truth
1415
+ ------------------------
1416
+  (0.1ms) rollback transaction
1417
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1418
+  (0.2ms) begin transaction
1419
+ ------------------------
1420
+ BackdropTest: test_truth
1421
+ ------------------------
1422
+  (0.1ms) rollback transaction
1423
+  (0.1ms) begin transaction
1424
+ ---------------------------------------------
1425
+ ActAsBackdropTest: test_model_act_as_backdrop
1426
+ ---------------------------------------------
1427
+  (0.1ms) SAVEPOINT active_record_1
1428
+ SQL (0.9ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:55:21.600142"], ["updated_at", "2015-12-17 20:55:21.600142"]]
1429
+ [ActiveJob] [BackdropJob] [b8c35942-f6cc-4995-9f7d-c65520179d20] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1430
+ [ActiveJob] [BackdropJob] [b8c35942-f6cc-4995-9f7d-c65520179d20] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1431
+ [ActiveJob] [BackdropJob] [b8c35942-f6cc-4995-9f7d-c65520179d20] Performed BackdropJob from Inline(default) in 14.07ms
1432
+ [ActiveJob] Enqueued BackdropJob (Job ID: b8c35942-f6cc-4995-9f7d-c65520179d20) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1433
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1434
+  (0.1ms) SAVEPOINT active_record_1
1435
+ SQL (0.5ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:55:21.623011"], ["id", 1]]
1436
+ [ActiveJob] [BackdropJob] [8fc6cef7-15da-4b0d-885c-1628deaad67f] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:55:21.600Z\"],\"updated_at\":[null,\"2015-12-17T20:55:21.600Z\"],\"id\":[null,1]}}"
1437
+ [ActiveJob] [BackdropJob] [8fc6cef7-15da-4b0d-885c-1628deaad67f] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1438
+ [ActiveJob] [BackdropJob] [8fc6cef7-15da-4b0d-885c-1628deaad67f] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 20:55:21.627863"], ["id", 1]]
1439
+ [ActiveJob] [BackdropJob] [8fc6cef7-15da-4b0d-885c-1628deaad67f] [BackdropJob] [d1015ea3-be31-498d-b7af-ec1dec7ec1e9] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1440
+ [ActiveJob] [BackdropJob] [8fc6cef7-15da-4b0d-885c-1628deaad67f] [BackdropJob] [d1015ea3-be31-498d-b7af-ec1dec7ec1e9] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1441
+ [ActiveJob] [BackdropJob] [8fc6cef7-15da-4b0d-885c-1628deaad67f] [BackdropJob] [d1015ea3-be31-498d-b7af-ec1dec7ec1e9] Performed BackdropJob from Inline(default) in 1.33ms
1442
+ [ActiveJob] [BackdropJob] [8fc6cef7-15da-4b0d-885c-1628deaad67f] Enqueued BackdropJob (Job ID: d1015ea3-be31-498d-b7af-ec1dec7ec1e9) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1443
+ [ActiveJob] [BackdropJob] [8fc6cef7-15da-4b0d-885c-1628deaad67f] Performed BackdropJob from Inline(default) in 6.66ms
1444
+ [ActiveJob] Enqueued BackdropJob (Job ID: 8fc6cef7-15da-4b0d-885c-1628deaad67f) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:55:21.600Z\"],\"updated_at\":[null,\"2015-12-17T20:55:21.600Z\"],\"id\":[null,1]}}"
1445
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1446
+  (0.3ms) rollback transaction
1447
+  (0.1ms) begin transaction
1448
+ ----------------------------------------------
1449
+ ActAsBackdropTest: test_model_after_processing
1450
+ ----------------------------------------------
1451
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" ORDER BY "somethings"."id" ASC LIMIT 1
1452
+  (0.1ms) rollback transaction
1453
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1454
+  (0.2ms) begin transaction
1455
+ ---------------------------------------------
1456
+ ActAsBackdropTest: test_model_act_as_backdrop
1457
+ ---------------------------------------------
1458
+  (0.1ms) SAVEPOINT active_record_1
1459
+ SQL (2.1ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:55:53.592790"], ["updated_at", "2015-12-17 20:55:53.592790"]]
1460
+ [ActiveJob] [BackdropJob] [dbe7ed1d-ce37-4348-83b2-50bb26a60e15] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1461
+ [ActiveJob] [BackdropJob] [dbe7ed1d-ce37-4348-83b2-50bb26a60e15] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1462
+ [ActiveJob] [BackdropJob] [dbe7ed1d-ce37-4348-83b2-50bb26a60e15] Performed BackdropJob from Inline(default) in 16.84ms
1463
+ [ActiveJob] Enqueued BackdropJob (Job ID: dbe7ed1d-ce37-4348-83b2-50bb26a60e15) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1464
+  (0.6ms) RELEASE SAVEPOINT active_record_1
1465
+  (0.1ms) SAVEPOINT active_record_1
1466
+ SQL (0.9ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:55:53.620203"], ["id", 1]]
1467
+ [ActiveJob] [BackdropJob] [53e01ea5-6058-421f-961d-f57ed825715f] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:55:53.592Z\"],\"updated_at\":[null,\"2015-12-17T20:55:53.592Z\"],\"id\":[null,1]}}"
1468
+ [ActiveJob] [BackdropJob] [53e01ea5-6058-421f-961d-f57ed825715f] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1469
+ [ActiveJob] [BackdropJob] [53e01ea5-6058-421f-961d-f57ed825715f] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 20:55:53.625866"], ["id", 1]]
1470
+ [ActiveJob] [BackdropJob] [53e01ea5-6058-421f-961d-f57ed825715f] [BackdropJob] [6dea7306-8c97-4cc6-a5f7-ad9e3037d734] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1471
+ [ActiveJob] [BackdropJob] [53e01ea5-6058-421f-961d-f57ed825715f] [BackdropJob] [6dea7306-8c97-4cc6-a5f7-ad9e3037d734] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1472
+ [ActiveJob] [BackdropJob] [53e01ea5-6058-421f-961d-f57ed825715f] [BackdropJob] [6dea7306-8c97-4cc6-a5f7-ad9e3037d734] Performed BackdropJob from Inline(default) in 1.32ms
1473
+ [ActiveJob] [BackdropJob] [53e01ea5-6058-421f-961d-f57ed825715f] Enqueued BackdropJob (Job ID: 6dea7306-8c97-4cc6-a5f7-ad9e3037d734) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1474
+ [ActiveJob] [BackdropJob] [53e01ea5-6058-421f-961d-f57ed825715f] Performed BackdropJob from Inline(default) in 6.23ms
1475
+ [ActiveJob] Enqueued BackdropJob (Job ID: 53e01ea5-6058-421f-961d-f57ed825715f) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:55:53.592Z\"],\"updated_at\":[null,\"2015-12-17T20:55:53.592Z\"],\"id\":[null,1]}}"
1476
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1477
+  (0.2ms) rollback transaction
1478
+  (0.1ms) begin transaction
1479
+ ----------------------------------------------
1480
+ ActAsBackdropTest: test_model_after_processing
1481
+ ----------------------------------------------
1482
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" ORDER BY "somethings"."id" ASC LIMIT 1
1483
+  (0.1ms) rollback transaction
1484
+  (0.1ms) begin transaction
1485
+ ------------------------
1486
+ BackdropTest: test_truth
1487
+ ------------------------
1488
+  (0.1ms) rollback transaction
1489
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1490
+  (0.2ms) begin transaction
1491
+ ------------------------
1492
+ BackdropTest: test_truth
1493
+ ------------------------
1494
+  (0.1ms) rollback transaction
1495
+  (0.1ms) begin transaction
1496
+ ---------------------------------------------
1497
+ ActAsBackdropTest: test_model_act_as_backdrop
1498
+ ---------------------------------------------
1499
+ Something Load (0.3ms) SELECT "somethings".* FROM "somethings" ORDER BY "somethings"."id" ASC LIMIT 1
1500
+  (0.1ms) rollback transaction
1501
+  (0.1ms) begin transaction
1502
+ ----------------------------------------------
1503
+ ActAsBackdropTest: test_model_after_processing
1504
+ ----------------------------------------------
1505
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" ORDER BY "somethings"."id" ASC LIMIT 1
1506
+  (0.1ms) rollback transaction
1507
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1508
+  (0.2ms) begin transaction
1509
+ ----------------------------------------------
1510
+ ActAsBackdropTest: test_model_after_processing
1511
+ ----------------------------------------------
1512
+  (0.1ms) rollback transaction
1513
+  (0.1ms) begin transaction
1514
+ ---------------------------------------------
1515
+ ActAsBackdropTest: test_model_act_as_backdrop
1516
+ ---------------------------------------------
1517
+  (0.1ms) rollback transaction
1518
+  (0.1ms) begin transaction
1519
+ ------------------------
1520
+ BackdropTest: test_truth
1521
+ ------------------------
1522
+  (0.1ms) rollback transaction
1523
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1524
+  (0.2ms) begin transaction
1525
+ ------------------------
1526
+ BackdropTest: test_truth
1527
+ ------------------------
1528
+  (0.4ms) rollback transaction
1529
+  (0.1ms) begin transaction
1530
+ ---------------------------------------------
1531
+ ActAsBackdropTest: test_model_act_as_backdrop
1532
+ ---------------------------------------------
1533
+  (0.0ms) rollback transaction
1534
+  (0.0ms) begin transaction
1535
+ ----------------------------------------------
1536
+ ActAsBackdropTest: test_model_after_processing
1537
+ ----------------------------------------------
1538
+ Something Load (0.8ms) SELECT "somethings".* FROM "somethings" ORDER BY "somethings"."id" ASC LIMIT 1
1539
+  (0.1ms) rollback transaction
1540
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1541
+  (2.2ms) begin transaction
1542
+ ------------------------
1543
+ BackdropTest: test_truth
1544
+ ------------------------
1545
+  (0.2ms) rollback transaction
1546
+  (0.4ms) begin transaction
1547
+ ----------------------------------------------
1548
+ ActAsBackdropTest: test_model_after_processing
1549
+ ----------------------------------------------
1550
+ Something Load (6.9ms) SELECT "somethings".* FROM "somethings" ORDER BY "somethings"."id" ASC LIMIT 1
1551
+  (0.1ms) rollback transaction
1552
+  (0.1ms) begin transaction
1553
+ ---------------------------------------------
1554
+ ActAsBackdropTest: test_model_act_as_backdrop
1555
+ ---------------------------------------------
1556
+  (0.1ms) SAVEPOINT active_record_1
1557
+ SQL (2.2ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:58:04.783582"], ["updated_at", "2015-12-17 20:58:04.783582"]]
1558
+ [ActiveJob] [BackdropJob] [68746a0c-191f-41fb-8544-1c2dbf6eb201] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1559
+ [ActiveJob] [BackdropJob] [68746a0c-191f-41fb-8544-1c2dbf6eb201] Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1560
+ [ActiveJob] [BackdropJob] [68746a0c-191f-41fb-8544-1c2dbf6eb201] Performed BackdropJob from Inline(default) in 15.95ms
1561
+ [ActiveJob] Enqueued BackdropJob (Job ID: 68746a0c-191f-41fb-8544-1c2dbf6eb201) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1562
+  (0.4ms) RELEASE SAVEPOINT active_record_1
1563
+  (0.1ms) SAVEPOINT active_record_1
1564
+ SQL (0.4ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:58:04.814699"], ["id", 1]]
1565
+ [ActiveJob] [BackdropJob] [3c6ac536-1671-42b0-8389-817e6e0584cb] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:58:04.783Z\"],\"updated_at\":[null,\"2015-12-17T20:58:04.783Z\"],\"id\":[null,1]}}"
1566
+ [ActiveJob] [BackdropJob] [3c6ac536-1671-42b0-8389-817e6e0584cb] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1567
+ [ActiveJob] [BackdropJob] [3c6ac536-1671-42b0-8389-817e6e0584cb] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 20:58:04.819536"], ["id", 1]]
1568
+ [ActiveJob] [BackdropJob] [3c6ac536-1671-42b0-8389-817e6e0584cb] [BackdropJob] [394b57c1-16c4-4f7e-b3d2-3b2b58eed988] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1569
+ [ActiveJob] [BackdropJob] [3c6ac536-1671-42b0-8389-817e6e0584cb] [BackdropJob] [394b57c1-16c4-4f7e-b3d2-3b2b58eed988] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1570
+ [ActiveJob] [BackdropJob] [3c6ac536-1671-42b0-8389-817e6e0584cb] [BackdropJob] [394b57c1-16c4-4f7e-b3d2-3b2b58eed988] Performed BackdropJob from Inline(default) in 1.11ms
1571
+ [ActiveJob] [BackdropJob] [3c6ac536-1671-42b0-8389-817e6e0584cb] Enqueued BackdropJob (Job ID: 394b57c1-16c4-4f7e-b3d2-3b2b58eed988) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1572
+ [ActiveJob] [BackdropJob] [3c6ac536-1671-42b0-8389-817e6e0584cb] Performed BackdropJob from Inline(default) in 5.57ms
1573
+ [ActiveJob] Enqueued BackdropJob (Job ID: 3c6ac536-1671-42b0-8389-817e6e0584cb) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:58:04.783Z\"],\"updated_at\":[null,\"2015-12-17T20:58:04.783Z\"],\"id\":[null,1]}}"
1574
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1575
+  (0.2ms) rollback transaction
1576
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1577
+  (1.5ms) begin transaction
1578
+ ------------------------
1579
+ BackdropTest: test_truth
1580
+ ------------------------
1581
+  (0.1ms) rollback transaction
1582
+  (0.1ms) begin transaction
1583
+ ---------------------------------------------
1584
+ ActAsBackdropTest: test_model_act_as_backdrop
1585
+ ---------------------------------------------
1586
+  (0.1ms) SAVEPOINT active_record_1
1587
+ SQL (8.0ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:58:26.036591"], ["updated_at", "2015-12-17 20:58:26.036591"]]
1588
+ [ActiveJob] [BackdropJob] [b5568240-2cb3-4157-8b83-0570fc439fb4] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1589
+ [ActiveJob] [BackdropJob] [b5568240-2cb3-4157-8b83-0570fc439fb4] Something Load (3.5ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1590
+ [ActiveJob] [BackdropJob] [b5568240-2cb3-4157-8b83-0570fc439fb4] Performed BackdropJob from Inline(default) in 20.08ms
1591
+ [ActiveJob] Enqueued BackdropJob (Job ID: b5568240-2cb3-4157-8b83-0570fc439fb4) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1592
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1593
+  (0.2ms) SAVEPOINT active_record_1
1594
+ SQL (0.4ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:58:26.079456"], ["id", 1]]
1595
+ [ActiveJob] [BackdropJob] [36a137f3-281b-4c88-98cf-2a0fc8692c93] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:58:26.036Z\"],\"updated_at\":[null,\"2015-12-17T20:58:26.036Z\"],\"id\":[null,1]}}"
1596
+ [ActiveJob] [BackdropJob] [36a137f3-281b-4c88-98cf-2a0fc8692c93] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1597
+ [ActiveJob] [BackdropJob] [36a137f3-281b-4c88-98cf-2a0fc8692c93] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 20:58:26.088184"], ["id", 1]]
1598
+ [ActiveJob] [BackdropJob] [36a137f3-281b-4c88-98cf-2a0fc8692c93] [BackdropJob] [ed0ae81b-0cb9-43c1-9901-407f1797e646] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1599
+ [ActiveJob] [BackdropJob] [36a137f3-281b-4c88-98cf-2a0fc8692c93] [BackdropJob] [ed0ae81b-0cb9-43c1-9901-407f1797e646] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1600
+ [ActiveJob] [BackdropJob] [36a137f3-281b-4c88-98cf-2a0fc8692c93] [BackdropJob] [ed0ae81b-0cb9-43c1-9901-407f1797e646] Performed BackdropJob from Inline(default) in 1.25ms
1601
+ [ActiveJob] [BackdropJob] [36a137f3-281b-4c88-98cf-2a0fc8692c93] Enqueued BackdropJob (Job ID: ed0ae81b-0cb9-43c1-9901-407f1797e646) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1602
+ [ActiveJob] [BackdropJob] [36a137f3-281b-4c88-98cf-2a0fc8692c93] Performed BackdropJob from Inline(default) in 6.76ms
1603
+ [ActiveJob] Enqueued BackdropJob (Job ID: 36a137f3-281b-4c88-98cf-2a0fc8692c93) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:58:26.036Z\"],\"updated_at\":[null,\"2015-12-17T20:58:26.036Z\"],\"id\":[null,1]}}"
1604
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1605
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1606
+  (0.2ms) rollback transaction
1607
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1608
+  (0.2ms) begin transaction
1609
+ ------------------------
1610
+ BackdropTest: test_truth
1611
+ ------------------------
1612
+  (0.1ms) rollback transaction
1613
+  (0.4ms) begin transaction
1614
+ ---------------------------------------------
1615
+ ActAsBackdropTest: test_model_act_as_backdrop
1616
+ ---------------------------------------------
1617
+  (0.1ms) SAVEPOINT active_record_1
1618
+ SQL (2.0ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 20:59:52.404064"], ["updated_at", "2015-12-17 20:59:52.404064"]]
1619
+ [ActiveJob] [BackdropJob] [dd502560-043b-43a0-91aa-4b5d00e099ac] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1620
+ [ActiveJob] [BackdropJob] [dd502560-043b-43a0-91aa-4b5d00e099ac] Something Load (1.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1621
+ [ActiveJob] [BackdropJob] [dd502560-043b-43a0-91aa-4b5d00e099ac] Performed BackdropJob from Inline(default) in 20.35ms
1622
+ [ActiveJob] Enqueued BackdropJob (Job ID: dd502560-043b-43a0-91aa-4b5d00e099ac) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1623
+  (0.6ms) RELEASE SAVEPOINT active_record_1
1624
+  (0.1ms) SAVEPOINT active_record_1
1625
+ SQL (1.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 20:59:52.435627"], ["id", 1]]
1626
+ [ActiveJob] [BackdropJob] [458b666d-41b5-4ad4-bdf1-7819048129b5] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:59:52.404Z\"],\"updated_at\":[null,\"2015-12-17T20:59:52.404Z\"],\"id\":[null,1]}}"
1627
+ [ActiveJob] [BackdropJob] [458b666d-41b5-4ad4-bdf1-7819048129b5] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1628
+ [ActiveJob] [BackdropJob] [458b666d-41b5-4ad4-bdf1-7819048129b5] SQL (0.3ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 20:59:52.441027"], ["id", 1]]
1629
+ [ActiveJob] [BackdropJob] [458b666d-41b5-4ad4-bdf1-7819048129b5] [BackdropJob] [54a66b2b-b47c-428d-822c-ee14bd409865] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1630
+ [ActiveJob] [BackdropJob] [458b666d-41b5-4ad4-bdf1-7819048129b5] [BackdropJob] [54a66b2b-b47c-428d-822c-ee14bd409865] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1631
+ [ActiveJob] [BackdropJob] [458b666d-41b5-4ad4-bdf1-7819048129b5] [BackdropJob] [54a66b2b-b47c-428d-822c-ee14bd409865] Performed BackdropJob from Inline(default) in 1.78ms
1632
+ [ActiveJob] [BackdropJob] [458b666d-41b5-4ad4-bdf1-7819048129b5] Enqueued BackdropJob (Job ID: 54a66b2b-b47c-428d-822c-ee14bd409865) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1633
+ [ActiveJob] [BackdropJob] [458b666d-41b5-4ad4-bdf1-7819048129b5] Performed BackdropJob from Inline(default) in 7.44ms
1634
+ [ActiveJob] Enqueued BackdropJob (Job ID: 458b666d-41b5-4ad4-bdf1-7819048129b5) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T20:59:52.404Z\"],\"updated_at\":[null,\"2015-12-17T20:59:52.404Z\"],\"id\":[null,1]}}"
1635
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1636
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1637
+  (0.2ms) rollback transaction
1638
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1639
+  (0.3ms) begin transaction
1640
+ ------------------------
1641
+ BackdropTest: test_truth
1642
+ ------------------------
1643
+  (0.2ms) rollback transaction
1644
+  (0.1ms) begin transaction
1645
+ ---------------------------------------------
1646
+ ActAsBackdropTest: test_model_act_as_backdrop
1647
+ ---------------------------------------------
1648
+  (0.1ms) SAVEPOINT active_record_1
1649
+ SQL (2.0ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "abc"], ["created_at", "2015-12-17 21:00:12.900357"], ["updated_at", "2015-12-17 21:00:12.900357"]]
1650
+ [ActiveJob] [BackdropJob] [74895047-d8a2-43c0-80d5-55d7dbadd16c] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1651
+ [ActiveJob] [BackdropJob] [74895047-d8a2-43c0-80d5-55d7dbadd16c] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1652
+ [ActiveJob] [BackdropJob] [74895047-d8a2-43c0-80d5-55d7dbadd16c] Performed BackdropJob from Inline(default) in 15.93ms
1653
+ [ActiveJob] Enqueued BackdropJob (Job ID: 74895047-d8a2-43c0-80d5-55d7dbadd16c) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1654
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1655
+  (0.1ms) SAVEPOINT active_record_1
1656
+ SQL (0.6ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 21:00:12.928452"], ["id", 1]]
1657
+ [ActiveJob] [BackdropJob] [f89f83fd-dbea-44d4-8cd4-52e8352e48b9] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T21:00:12.900Z\"],\"updated_at\":[null,\"2015-12-17T21:00:12.900Z\"],\"id\":[null,1]}}"
1658
+ [ActiveJob] [BackdropJob] [f89f83fd-dbea-44d4-8cd4-52e8352e48b9] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1659
+ [ActiveJob] [BackdropJob] [f89f83fd-dbea-44d4-8cd4-52e8352e48b9] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 21:00:12.933994"], ["id", 1]]
1660
+ [ActiveJob] [BackdropJob] [f89f83fd-dbea-44d4-8cd4-52e8352e48b9] [BackdropJob] [28e01656-b688-42bf-88a7-7f55af060991] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1661
+ [ActiveJob] [BackdropJob] [f89f83fd-dbea-44d4-8cd4-52e8352e48b9] [BackdropJob] [28e01656-b688-42bf-88a7-7f55af060991] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1662
+ [ActiveJob] [BackdropJob] [f89f83fd-dbea-44d4-8cd4-52e8352e48b9] [BackdropJob] [28e01656-b688-42bf-88a7-7f55af060991] Performed BackdropJob from Inline(default) in 1.07ms
1663
+ [ActiveJob] [BackdropJob] [f89f83fd-dbea-44d4-8cd4-52e8352e48b9] Enqueued BackdropJob (Job ID: 28e01656-b688-42bf-88a7-7f55af060991) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1664
+ [ActiveJob] [BackdropJob] [f89f83fd-dbea-44d4-8cd4-52e8352e48b9] Performed BackdropJob from Inline(default) in 5.78ms
1665
+ [ActiveJob] Enqueued BackdropJob (Job ID: f89f83fd-dbea-44d4-8cd4-52e8352e48b9) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"created_at\":[null,\"2015-12-17T21:00:12.900Z\"],\"updated_at\":[null,\"2015-12-17T21:00:12.900Z\"],\"id\":[null,1]}}"
1666
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1667
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1668
+  (0.2ms) rollback transaction
1669
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1670
+  (0.1ms) begin transaction
1671
+ ---------------------------------------------
1672
+ ActAsBackdropTest: test_model_act_as_backdrop
1673
+ ---------------------------------------------
1674
+  (0.1ms) SAVEPOINT active_record_1
1675
+ SQL (12.5ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 21:00:44.193821"], ["updated_at", "2015-12-17 21:00:44.193821"]]
1676
+ [ActiveJob] [BackdropJob] [0e24362b-102c-445d-93bf-68f37703ac64] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1677
+ [ActiveJob] [BackdropJob] [0e24362b-102c-445d-93bf-68f37703ac64] Something Load (11.7ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1678
+ [ActiveJob] [BackdropJob] [0e24362b-102c-445d-93bf-68f37703ac64] Performed BackdropJob from Inline(default) in 34.43ms
1679
+ [ActiveJob] Enqueued BackdropJob (Job ID: 0e24362b-102c-445d-93bf-68f37703ac64) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1680
+  (0.8ms) RELEASE SAVEPOINT active_record_1
1681
+  (0.0ms) SAVEPOINT active_record_1
1682
+ SQL (0.5ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 21:00:44.259686"], ["id", 1]]
1683
+ [ActiveJob] [BackdropJob] [19ca51de-3d00-4551-850d-fd75cadb147b] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:00:44.193Z\"],\"updated_at\":[null,\"2015-12-17T21:00:44.193Z\"],\"id\":[null,1]}}"
1684
+ [ActiveJob] [BackdropJob] [19ca51de-3d00-4551-850d-fd75cadb147b] Something Load (1.5ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1685
+ [ActiveJob] [BackdropJob] [19ca51de-3d00-4551-850d-fd75cadb147b] Performed BackdropJob from Inline(default) in 5.36ms
1686
+ [ActiveJob] Enqueued BackdropJob (Job ID: 19ca51de-3d00-4551-850d-fd75cadb147b) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:00:44.193Z\"],\"updated_at\":[null,\"2015-12-17T21:00:44.193Z\"],\"id\":[null,1]}}"
1687
+  (0.4ms) RELEASE SAVEPOINT active_record_1
1688
+  (0.1ms) SAVEPOINT active_record_1
1689
+ SQL (0.6ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 21:00:44.279602"], ["id", 1]]
1690
+ [ActiveJob] [BackdropJob] [a428566f-1cb9-4b68-a74b-50dadb612d42] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:00:44.193Z\",\"2015-12-17T21:00:44.259Z\"]}}"
1691
+ [ActiveJob] [BackdropJob] [a428566f-1cb9-4b68-a74b-50dadb612d42] Something Load (1.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1692
+ [ActiveJob] [BackdropJob] [a428566f-1cb9-4b68-a74b-50dadb612d42] SQL (0.6ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 21:00:44.289876"], ["id", 1]]
1693
+ [ActiveJob] [BackdropJob] [a428566f-1cb9-4b68-a74b-50dadb612d42] [BackdropJob] [d5b030f7-c1f3-4a76-82b1-f66dfd5ca76b] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1694
+ [ActiveJob] [BackdropJob] [a428566f-1cb9-4b68-a74b-50dadb612d42] [BackdropJob] [d5b030f7-c1f3-4a76-82b1-f66dfd5ca76b] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1695
+ [ActiveJob] [BackdropJob] [a428566f-1cb9-4b68-a74b-50dadb612d42] [BackdropJob] [d5b030f7-c1f3-4a76-82b1-f66dfd5ca76b] Performed BackdropJob from Inline(default) in 0.61ms
1696
+ [ActiveJob] [BackdropJob] [a428566f-1cb9-4b68-a74b-50dadb612d42] Enqueued BackdropJob (Job ID: d5b030f7-c1f3-4a76-82b1-f66dfd5ca76b) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1697
+ [ActiveJob] [BackdropJob] [a428566f-1cb9-4b68-a74b-50dadb612d42] Performed BackdropJob from Inline(default) in 9.22ms
1698
+ [ActiveJob] Enqueued BackdropJob (Job ID: a428566f-1cb9-4b68-a74b-50dadb612d42) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:00:44.193Z\",\"2015-12-17T21:00:44.259Z\"]}}"
1699
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1700
+  (0.2ms) rollback transaction
1701
+  (0.1ms) begin transaction
1702
+ ------------------------
1703
+ BackdropTest: test_truth
1704
+ ------------------------
1705
+  (0.1ms) rollback transaction
1706
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1707
+  (0.1ms) begin transaction
1708
+ ---------------------------------------------
1709
+ ActAsBackdropTest: test_model_act_as_backdrop
1710
+ ---------------------------------------------
1711
+  (0.1ms) SAVEPOINT active_record_1
1712
+ SQL (1.9ms) INSERT INTO "somethings" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "unknown"], ["created_at", "2015-12-17 21:01:13.733491"], ["updated_at", "2015-12-17 21:01:13.733491"]]
1713
+ [ActiveJob] [BackdropJob] [81eea656-98bd-4107-8eb2-c97ee88e4234] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1714
+ [ActiveJob] [BackdropJob] [81eea656-98bd-4107-8eb2-c97ee88e4234] Something Load (0.4ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1715
+ [ActiveJob] [BackdropJob] [81eea656-98bd-4107-8eb2-c97ee88e4234] Performed BackdropJob from Inline(default) in 17.2ms
1716
+ [ActiveJob] Enqueued BackdropJob (Job ID: 81eea656-98bd-4107-8eb2-c97ee88e4234) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1717
+  (0.6ms) RELEASE SAVEPOINT active_record_1
1718
+  (0.1ms) SAVEPOINT active_record_1
1719
+ SQL (1.4ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 21:01:13.765584"], ["id", 1]]
1720
+ [ActiveJob] [BackdropJob] [784e3b63-26ae-478b-894b-a239d7da1de8] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"unknown\"],\"created_at\":[null,\"2015-12-17T21:01:13.733Z\"],\"updated_at\":[null,\"2015-12-17T21:01:13.733Z\"],\"id\":[null,1]}}"
1721
+ [ActiveJob] [BackdropJob] [784e3b63-26ae-478b-894b-a239d7da1de8] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1722
+ [ActiveJob] [BackdropJob] [784e3b63-26ae-478b-894b-a239d7da1de8] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "unknown"], ["updated_at", "2015-12-17 21:01:13.773645"], ["id", 1]]
1723
+ [ActiveJob] [BackdropJob] [784e3b63-26ae-478b-894b-a239d7da1de8] [BackdropJob] [9ee9876e-e98b-426f-963a-ca6bdedaff01] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1724
+ [ActiveJob] [BackdropJob] [784e3b63-26ae-478b-894b-a239d7da1de8] [BackdropJob] [9ee9876e-e98b-426f-963a-ca6bdedaff01] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1725
+ [ActiveJob] [BackdropJob] [784e3b63-26ae-478b-894b-a239d7da1de8] [BackdropJob] [9ee9876e-e98b-426f-963a-ca6bdedaff01] Performed BackdropJob from Inline(default) in 0.85ms
1726
+ [ActiveJob] [BackdropJob] [784e3b63-26ae-478b-894b-a239d7da1de8] Enqueued BackdropJob (Job ID: 9ee9876e-e98b-426f-963a-ca6bdedaff01) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1727
+ [ActiveJob] [BackdropJob] [784e3b63-26ae-478b-894b-a239d7da1de8] Performed BackdropJob from Inline(default) in 5.45ms
1728
+ [ActiveJob] Enqueued BackdropJob (Job ID: 784e3b63-26ae-478b-894b-a239d7da1de8) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"unknown\"],\"created_at\":[null,\"2015-12-17T21:01:13.733Z\"],\"updated_at\":[null,\"2015-12-17T21:01:13.733Z\"],\"id\":[null,1]}}"
1729
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1730
+  (0.1ms) SAVEPOINT active_record_1
1731
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 21:01:13.778312"], ["id", 1]]
1732
+ [ActiveJob] [BackdropJob] [fb2a4d68-87cf-44a5-b25d-bffdbd09f6eb] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"unknown\",\"abc\"],\"updated_at\":[\"2015-12-17T21:01:13.733Z\",\"2015-12-17T21:01:13.765Z\"]}}"
1733
+ [ActiveJob] [BackdropJob] [fb2a4d68-87cf-44a5-b25d-bffdbd09f6eb] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1734
+ [ActiveJob] [BackdropJob] [fb2a4d68-87cf-44a5-b25d-bffdbd09f6eb] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 21:01:13.780873"], ["id", 1]]
1735
+ [ActiveJob] [BackdropJob] [fb2a4d68-87cf-44a5-b25d-bffdbd09f6eb] [BackdropJob] [58e5b1e3-1137-4c79-90c9-eb9c1f5bb1df] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1736
+ [ActiveJob] [BackdropJob] [fb2a4d68-87cf-44a5-b25d-bffdbd09f6eb] [BackdropJob] [58e5b1e3-1137-4c79-90c9-eb9c1f5bb1df] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1737
+ [ActiveJob] [BackdropJob] [fb2a4d68-87cf-44a5-b25d-bffdbd09f6eb] [BackdropJob] [58e5b1e3-1137-4c79-90c9-eb9c1f5bb1df] Performed BackdropJob from Inline(default) in 0.71ms
1738
+ [ActiveJob] [BackdropJob] [fb2a4d68-87cf-44a5-b25d-bffdbd09f6eb] Enqueued BackdropJob (Job ID: 58e5b1e3-1137-4c79-90c9-eb9c1f5bb1df) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1739
+ [ActiveJob] [BackdropJob] [fb2a4d68-87cf-44a5-b25d-bffdbd09f6eb] Performed BackdropJob from Inline(default) in 3.82ms
1740
+ [ActiveJob] Enqueued BackdropJob (Job ID: fb2a4d68-87cf-44a5-b25d-bffdbd09f6eb) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"unknown\",\"abc\"],\"updated_at\":[\"2015-12-17T21:01:13.733Z\",\"2015-12-17T21:01:13.765Z\"]}}"
1741
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1742
+  (0.6ms) rollback transaction
1743
+  (0.1ms) begin transaction
1744
+ ------------------------
1745
+ BackdropTest: test_truth
1746
+ ------------------------
1747
+  (0.1ms) rollback transaction
1748
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1749
+  (1.3ms) begin transaction
1750
+ ---------------------------------------------
1751
+ ActAsBackdropTest: test_model_act_as_backdrop
1752
+ ---------------------------------------------
1753
+  (0.1ms) SAVEPOINT active_record_1
1754
+ SQL (15.5ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 21:01:28.556218"], ["updated_at", "2015-12-17 21:01:28.556218"]]
1755
+ [ActiveJob] [BackdropJob] [7b477da7-b2b8-43a4-86ef-a256e6a47a7b] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1756
+ [ActiveJob] [BackdropJob] [7b477da7-b2b8-43a4-86ef-a256e6a47a7b] Something Load (4.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1757
+ [ActiveJob] [BackdropJob] [7b477da7-b2b8-43a4-86ef-a256e6a47a7b] Performed BackdropJob from Inline(default) in 35.06ms
1758
+ [ActiveJob] Enqueued BackdropJob (Job ID: 7b477da7-b2b8-43a4-86ef-a256e6a47a7b) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1759
+  (0.7ms) RELEASE SAVEPOINT active_record_1
1760
+  (0.1ms) SAVEPOINT active_record_1
1761
+ SQL (0.8ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 21:01:28.663920"], ["id", 1]]
1762
+ [ActiveJob] [BackdropJob] [c56b6bca-c6e5-4711-a8cf-12c0ee2539f0] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:01:28.556Z\"],\"updated_at\":[null,\"2015-12-17T21:01:28.556Z\"],\"id\":[null,1]}}"
1763
+ [ActiveJob] [BackdropJob] [c56b6bca-c6e5-4711-a8cf-12c0ee2539f0] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1764
+ [ActiveJob] [BackdropJob] [c56b6bca-c6e5-4711-a8cf-12c0ee2539f0] Performed BackdropJob from Inline(default) in 2.4ms
1765
+ [ActiveJob] Enqueued BackdropJob (Job ID: c56b6bca-c6e5-4711-a8cf-12c0ee2539f0) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:01:28.556Z\"],\"updated_at\":[null,\"2015-12-17T21:01:28.556Z\"],\"id\":[null,1]}}"
1766
+  (0.4ms) RELEASE SAVEPOINT active_record_1
1767
+  (0.1ms) SAVEPOINT active_record_1
1768
+ SQL (0.3ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 21:01:28.677293"], ["id", 1]]
1769
+ [ActiveJob] [BackdropJob] [d480baa2-a9d4-48a0-8375-5eb053e60221] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:01:28.556Z\",\"2015-12-17T21:01:28.663Z\"]}}"
1770
+ [ActiveJob] [BackdropJob] [d480baa2-a9d4-48a0-8375-5eb053e60221] Something Load (1.8ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1771
+ [ActiveJob] [BackdropJob] [d480baa2-a9d4-48a0-8375-5eb053e60221] SQL (0.4ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 21:01:28.698435"], ["id", 1]]
1772
+ [ActiveJob] [BackdropJob] [d480baa2-a9d4-48a0-8375-5eb053e60221] [BackdropJob] [df091fdb-5b9b-4ab5-8cc4-9d9830e24cff] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1773
+ [ActiveJob] [BackdropJob] [d480baa2-a9d4-48a0-8375-5eb053e60221] [BackdropJob] [df091fdb-5b9b-4ab5-8cc4-9d9830e24cff] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1774
+ [ActiveJob] [BackdropJob] [d480baa2-a9d4-48a0-8375-5eb053e60221] [BackdropJob] [df091fdb-5b9b-4ab5-8cc4-9d9830e24cff] Performed BackdropJob from Inline(default) in 1.41ms
1775
+ [ActiveJob] [BackdropJob] [d480baa2-a9d4-48a0-8375-5eb053e60221] Enqueued BackdropJob (Job ID: df091fdb-5b9b-4ab5-8cc4-9d9830e24cff) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1776
+ [ActiveJob] [BackdropJob] [d480baa2-a9d4-48a0-8375-5eb053e60221] Performed BackdropJob from Inline(default) in 12.65ms
1777
+ [ActiveJob] Enqueued BackdropJob (Job ID: d480baa2-a9d4-48a0-8375-5eb053e60221) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:01:28.556Z\",\"2015-12-17T21:01:28.663Z\"]}}"
1778
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1779
+  (0.4ms) rollback transaction
1780
+  (0.1ms) begin transaction
1781
+ ------------------------
1782
+ BackdropTest: test_truth
1783
+ ------------------------
1784
+  (0.1ms) rollback transaction
1785
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1786
+  (1.1ms) begin transaction
1787
+ ---------------------------------------------
1788
+ ActAsBackdropTest: test_model_act_as_backdrop
1789
+ ---------------------------------------------
1790
+  (0.1ms) SAVEPOINT active_record_1
1791
+ SQL (11.0ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 21:01:44.957363"], ["updated_at", "2015-12-17 21:01:44.957363"]]
1792
+ [ActiveJob] [BackdropJob] [9d5ef675-07d0-4e2e-afe2-2ae7f9321379] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1793
+ [ActiveJob] [BackdropJob] [9d5ef675-07d0-4e2e-afe2-2ae7f9321379] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1794
+ [ActiveJob] [BackdropJob] [9d5ef675-07d0-4e2e-afe2-2ae7f9321379] Performed BackdropJob from Inline(default) in 16.2ms
1795
+ [ActiveJob] Enqueued BackdropJob (Job ID: 9d5ef675-07d0-4e2e-afe2-2ae7f9321379) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1796
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1797
+  (0.1ms) SAVEPOINT active_record_1
1798
+ SQL (0.4ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 21:01:44.996092"], ["id", 1]]
1799
+ [ActiveJob] [BackdropJob] [d247f378-1473-4b6f-acb1-45348dc63f68] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:01:44.957Z\"],\"updated_at\":[null,\"2015-12-17T21:01:44.957Z\"],\"id\":[null,1]}}"
1800
+ [ActiveJob] [BackdropJob] [d247f378-1473-4b6f-acb1-45348dc63f68] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1801
+ [ActiveJob] [BackdropJob] [d247f378-1473-4b6f-acb1-45348dc63f68] Performed BackdropJob from Inline(default) in 1.11ms
1802
+ [ActiveJob] Enqueued BackdropJob (Job ID: d247f378-1473-4b6f-acb1-45348dc63f68) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:01:44.957Z\"],\"updated_at\":[null,\"2015-12-17T21:01:44.957Z\"],\"id\":[null,1]}}"
1803
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1804
+  (0.1ms) SAVEPOINT active_record_1
1805
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 21:01:45.000341"], ["id", 1]]
1806
+ [ActiveJob] [BackdropJob] [ca952560-8d0f-4fca-bad5-50af36547570] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:01:44.957Z\",\"2015-12-17T21:01:44.996Z\"]}}"
1807
+ [ActiveJob] [BackdropJob] [ca952560-8d0f-4fca-bad5-50af36547570] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1808
+ [ActiveJob] [BackdropJob] [ca952560-8d0f-4fca-bad5-50af36547570] SQL (0.3ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 21:01:45.003581"], ["id", 1]]
1809
+ [ActiveJob] [BackdropJob] [ca952560-8d0f-4fca-bad5-50af36547570] [BackdropJob] [f12a1c10-d363-471b-b45f-647320c11e82] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1810
+ [ActiveJob] [BackdropJob] [ca952560-8d0f-4fca-bad5-50af36547570] [BackdropJob] [f12a1c10-d363-471b-b45f-647320c11e82] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1811
+ [ActiveJob] [BackdropJob] [ca952560-8d0f-4fca-bad5-50af36547570] [BackdropJob] [f12a1c10-d363-471b-b45f-647320c11e82] Performed BackdropJob from Inline(default) in 1.13ms
1812
+ [ActiveJob] [BackdropJob] [ca952560-8d0f-4fca-bad5-50af36547570] Enqueued BackdropJob (Job ID: f12a1c10-d363-471b-b45f-647320c11e82) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1813
+ [ActiveJob] [BackdropJob] [ca952560-8d0f-4fca-bad5-50af36547570] Performed BackdropJob from Inline(default) in 5.36ms
1814
+ [ActiveJob] Enqueued BackdropJob (Job ID: ca952560-8d0f-4fca-bad5-50af36547570) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:01:44.957Z\",\"2015-12-17T21:01:44.996Z\"]}}"
1815
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1816
+  (0.2ms) rollback transaction
1817
+  (0.1ms) begin transaction
1818
+ ------------------------
1819
+ BackdropTest: test_truth
1820
+ ------------------------
1821
+  (0.1ms) rollback transaction
1822
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1823
+  (1.6ms) begin transaction
1824
+ ------------------------
1825
+ BackdropTest: test_truth
1826
+ ------------------------
1827
+  (0.4ms) rollback transaction
1828
+  (0.2ms) begin transaction
1829
+ ---------------------------------------------
1830
+ ActAsBackdropTest: test_model_act_as_backdrop
1831
+ ---------------------------------------------
1832
+  (0.1ms) SAVEPOINT active_record_1
1833
+ SQL (14.5ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 21:01:56.959732"], ["updated_at", "2015-12-17 21:01:56.959732"]]
1834
+ [ActiveJob] [BackdropJob] [3fe0d6a7-04b0-442f-9125-25082853ac88] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1835
+ [ActiveJob] [BackdropJob] [3fe0d6a7-04b0-442f-9125-25082853ac88] Something Load (3.9ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1836
+ [ActiveJob] [BackdropJob] [3fe0d6a7-04b0-442f-9125-25082853ac88] Performed BackdropJob from Inline(default) in 30.61ms
1837
+ [ActiveJob] Enqueued BackdropJob (Job ID: 3fe0d6a7-04b0-442f-9125-25082853ac88) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1838
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1839
+  (0.1ms) SAVEPOINT active_record_1
1840
+ SQL (0.7ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 21:01:57.024334"], ["id", 1]]
1841
+ [ActiveJob] [BackdropJob] [432af20e-0825-474c-a40c-a97f1a028a8e] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:01:56.959Z\"],\"updated_at\":[null,\"2015-12-17T21:01:56.959Z\"],\"id\":[null,1]}}"
1842
+ [ActiveJob] [BackdropJob] [432af20e-0825-474c-a40c-a97f1a028a8e] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1843
+ [ActiveJob] [BackdropJob] [432af20e-0825-474c-a40c-a97f1a028a8e] Performed BackdropJob from Inline(default) in 1.39ms
1844
+ [ActiveJob] Enqueued BackdropJob (Job ID: 432af20e-0825-474c-a40c-a97f1a028a8e) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:01:56.959Z\"],\"updated_at\":[null,\"2015-12-17T21:01:56.959Z\"],\"id\":[null,1]}}"
1845
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1846
+  (0.1ms) SAVEPOINT active_record_1
1847
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 21:01:57.032414"], ["id", 1]]
1848
+ [ActiveJob] [BackdropJob] [e2059bc1-af62-447f-aff5-06c2632b4eed] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:01:56.959Z\",\"2015-12-17T21:01:57.024Z\"]}}"
1849
+ [ActiveJob] [BackdropJob] [e2059bc1-af62-447f-aff5-06c2632b4eed] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1850
+ [ActiveJob] [BackdropJob] [e2059bc1-af62-447f-aff5-06c2632b4eed] SQL (0.3ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 21:01:57.036194"], ["id", 1]]
1851
+ [ActiveJob] [BackdropJob] [e2059bc1-af62-447f-aff5-06c2632b4eed] [BackdropJob] [bbf41906-d32e-4b6f-83c7-1f828709a13b] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1852
+ [ActiveJob] [BackdropJob] [e2059bc1-af62-447f-aff5-06c2632b4eed] [BackdropJob] [bbf41906-d32e-4b6f-83c7-1f828709a13b] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1853
+ [ActiveJob] [BackdropJob] [e2059bc1-af62-447f-aff5-06c2632b4eed] [BackdropJob] [bbf41906-d32e-4b6f-83c7-1f828709a13b] Performed BackdropJob from Inline(default) in 1.2ms
1854
+ [ActiveJob] [BackdropJob] [e2059bc1-af62-447f-aff5-06c2632b4eed] Enqueued BackdropJob (Job ID: bbf41906-d32e-4b6f-83c7-1f828709a13b) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1855
+ [ActiveJob] [BackdropJob] [e2059bc1-af62-447f-aff5-06c2632b4eed] Performed BackdropJob from Inline(default) in 6.38ms
1856
+ [ActiveJob] Enqueued BackdropJob (Job ID: e2059bc1-af62-447f-aff5-06c2632b4eed) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:01:56.959Z\",\"2015-12-17T21:01:57.024Z\"]}}"
1857
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1858
+  (0.1ms) SAVEPOINT active_record_1
1859
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "ghi"], ["updated_at", "2015-12-17 21:01:57.042036"], ["id", 1]]
1860
+ [ActiveJob] [BackdropJob] [90a28447-d617-4d97-b9c6-334b1f0d520a] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-17T21:01:57.024Z\",\"2015-12-17T21:01:57.032Z\"]}}"
1861
+ [ActiveJob] [BackdropJob] [90a28447-d617-4d97-b9c6-334b1f0d520a] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1862
+ [ActiveJob] [BackdropJob] [90a28447-d617-4d97-b9c6-334b1f0d520a] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "def"], ["updated_at", "2015-12-17 21:01:57.044907"], ["id", 1]]
1863
+ [ActiveJob] [BackdropJob] [90a28447-d617-4d97-b9c6-334b1f0d520a] [BackdropJob] [3ab05cdf-b41e-4d2f-8c5f-b2d5859dfa81] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1864
+ [ActiveJob] [BackdropJob] [90a28447-d617-4d97-b9c6-334b1f0d520a] [BackdropJob] [3ab05cdf-b41e-4d2f-8c5f-b2d5859dfa81] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1865
+ [ActiveJob] [BackdropJob] [90a28447-d617-4d97-b9c6-334b1f0d520a] [BackdropJob] [3ab05cdf-b41e-4d2f-8c5f-b2d5859dfa81] Performed BackdropJob from Inline(default) in 0.47ms
1866
+ [ActiveJob] [BackdropJob] [90a28447-d617-4d97-b9c6-334b1f0d520a] Enqueued BackdropJob (Job ID: 3ab05cdf-b41e-4d2f-8c5f-b2d5859dfa81) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1867
+ [ActiveJob] [BackdropJob] [90a28447-d617-4d97-b9c6-334b1f0d520a] Performed BackdropJob from Inline(default) in 2.51ms
1868
+ [ActiveJob] Enqueued BackdropJob (Job ID: 90a28447-d617-4d97-b9c6-334b1f0d520a) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-17T21:01:57.024Z\",\"2015-12-17T21:01:57.032Z\"]}}"
1869
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1870
+  (0.1ms) rollback transaction
1871
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1872
+  (0.1ms) begin transaction
1873
+ ---------------------------------------------
1874
+ ActAsBackdropTest: test_model_act_as_backdrop
1875
+ ---------------------------------------------
1876
+  (0.1ms) SAVEPOINT active_record_1
1877
+ SQL (3.8ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 21:02:18.620327"], ["updated_at", "2015-12-17 21:02:18.620327"]]
1878
+ [ActiveJob] [BackdropJob] [177d1d8a-f091-46de-b0b0-839d4408fbe8] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1879
+ [ActiveJob] [BackdropJob] [177d1d8a-f091-46de-b0b0-839d4408fbe8] Something Load (1.6ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1880
+ [ActiveJob] [BackdropJob] [177d1d8a-f091-46de-b0b0-839d4408fbe8] Performed BackdropJob from Inline(default) in 17.22ms
1881
+ [ActiveJob] Enqueued BackdropJob (Job ID: 177d1d8a-f091-46de-b0b0-839d4408fbe8) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1882
+  (0.4ms) RELEASE SAVEPOINT active_record_1
1883
+  (0.2ms) SAVEPOINT active_record_1
1884
+ SQL (0.4ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 21:02:18.655998"], ["id", 1]]
1885
+ [ActiveJob] [BackdropJob] [4dbb8a40-39e6-40b4-b69b-53e390b196db] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:02:18.620Z\"],\"updated_at\":[null,\"2015-12-17T21:02:18.620Z\"],\"id\":[null,1]}}"
1886
+ [ActiveJob] [BackdropJob] [4dbb8a40-39e6-40b4-b69b-53e390b196db] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1887
+ [ActiveJob] [BackdropJob] [4dbb8a40-39e6-40b4-b69b-53e390b196db] Performed BackdropJob from Inline(default) in 1.43ms
1888
+ [ActiveJob] Enqueued BackdropJob (Job ID: 4dbb8a40-39e6-40b4-b69b-53e390b196db) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:02:18.620Z\"],\"updated_at\":[null,\"2015-12-17T21:02:18.620Z\"],\"id\":[null,1]}}"
1889
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1890
+  (0.1ms) SAVEPOINT active_record_1
1891
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 21:02:18.664375"], ["id", 1]]
1892
+ [ActiveJob] [BackdropJob] [da00c356-5cb6-46bf-83a3-ebfd03a7b39d] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:02:18.620Z\",\"2015-12-17T21:02:18.655Z\"]}}"
1893
+ [ActiveJob] [BackdropJob] [da00c356-5cb6-46bf-83a3-ebfd03a7b39d] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1894
+ [ActiveJob] [BackdropJob] [da00c356-5cb6-46bf-83a3-ebfd03a7b39d] SQL (0.3ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 21:02:18.667728"], ["id", 1]]
1895
+ [ActiveJob] [BackdropJob] [da00c356-5cb6-46bf-83a3-ebfd03a7b39d] [BackdropJob] [e450e36e-2691-4714-9631-e65ef15f08f3] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1896
+ [ActiveJob] [BackdropJob] [da00c356-5cb6-46bf-83a3-ebfd03a7b39d] [BackdropJob] [e450e36e-2691-4714-9631-e65ef15f08f3] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1897
+ [ActiveJob] [BackdropJob] [da00c356-5cb6-46bf-83a3-ebfd03a7b39d] [BackdropJob] [e450e36e-2691-4714-9631-e65ef15f08f3] Performed BackdropJob from Inline(default) in 1.31ms
1898
+ [ActiveJob] [BackdropJob] [da00c356-5cb6-46bf-83a3-ebfd03a7b39d] Enqueued BackdropJob (Job ID: e450e36e-2691-4714-9631-e65ef15f08f3) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1899
+ [ActiveJob] [BackdropJob] [da00c356-5cb6-46bf-83a3-ebfd03a7b39d] Performed BackdropJob from Inline(default) in 6.3ms
1900
+ [ActiveJob] Enqueued BackdropJob (Job ID: da00c356-5cb6-46bf-83a3-ebfd03a7b39d) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:02:18.620Z\",\"2015-12-17T21:02:18.655Z\"]}}"
1901
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1902
+  (0.4ms) rollback transaction
1903
+  (0.1ms) begin transaction
1904
+ ------------------------
1905
+ BackdropTest: test_truth
1906
+ ------------------------
1907
+  (0.1ms) rollback transaction
1908
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1909
+  (0.2ms) begin transaction
1910
+ ------------------------
1911
+ BackdropTest: test_truth
1912
+ ------------------------
1913
+  (0.1ms) rollback transaction
1914
+  (0.1ms) begin transaction
1915
+ ---------------------------------------------
1916
+ ActAsBackdropTest: test_model_act_as_backdrop
1917
+ ---------------------------------------------
1918
+  (0.1ms) SAVEPOINT active_record_1
1919
+ SQL (1.9ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 21:02:27.393892"], ["updated_at", "2015-12-17 21:02:27.393892"]]
1920
+ [ActiveJob] [BackdropJob] [48aa0795-b5ca-4854-bf38-10446929c14c] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1921
+ [ActiveJob] [BackdropJob] [48aa0795-b5ca-4854-bf38-10446929c14c] Something Load (2.8ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1922
+ [ActiveJob] [BackdropJob] [48aa0795-b5ca-4854-bf38-10446929c14c] Performed BackdropJob from Inline(default) in 18.81ms
1923
+ [ActiveJob] Enqueued BackdropJob (Job ID: 48aa0795-b5ca-4854-bf38-10446929c14c) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1924
+  (1.0ms) RELEASE SAVEPOINT active_record_1
1925
+  (0.2ms) SAVEPOINT active_record_1
1926
+ SQL (0.7ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 21:02:27.425351"], ["id", 1]]
1927
+ [ActiveJob] [BackdropJob] [1fb54b66-a6c0-4a93-844f-03cf86cb3cd2] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:02:27.393Z\"],\"updated_at\":[null,\"2015-12-17T21:02:27.393Z\"],\"id\":[null,1]}}"
1928
+ [ActiveJob] [BackdropJob] [1fb54b66-a6c0-4a93-844f-03cf86cb3cd2] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1929
+ [ActiveJob] [BackdropJob] [1fb54b66-a6c0-4a93-844f-03cf86cb3cd2] Performed BackdropJob from Inline(default) in 1.11ms
1930
+ [ActiveJob] Enqueued BackdropJob (Job ID: 1fb54b66-a6c0-4a93-844f-03cf86cb3cd2) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:02:27.393Z\"],\"updated_at\":[null,\"2015-12-17T21:02:27.393Z\"],\"id\":[null,1]}}"
1931
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1932
+  (0.0ms) SAVEPOINT active_record_1
1933
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 21:02:27.435090"], ["id", 1]]
1934
+ [ActiveJob] [BackdropJob] [ac213e0e-2888-4a29-898a-6e0345ff3fd7] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:02:27.393Z\",\"2015-12-17T21:02:27.425Z\"]}}"
1935
+ [ActiveJob] [BackdropJob] [ac213e0e-2888-4a29-898a-6e0345ff3fd7] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1936
+ [ActiveJob] [BackdropJob] [ac213e0e-2888-4a29-898a-6e0345ff3fd7] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 21:02:27.437949"], ["id", 1]]
1937
+ [ActiveJob] [BackdropJob] [ac213e0e-2888-4a29-898a-6e0345ff3fd7] [BackdropJob] [8c6eb5f4-7e47-4f7b-9f91-be5ab3c1f90a] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1938
+ [ActiveJob] [BackdropJob] [ac213e0e-2888-4a29-898a-6e0345ff3fd7] [BackdropJob] [8c6eb5f4-7e47-4f7b-9f91-be5ab3c1f90a] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1939
+ [ActiveJob] [BackdropJob] [ac213e0e-2888-4a29-898a-6e0345ff3fd7] [BackdropJob] [8c6eb5f4-7e47-4f7b-9f91-be5ab3c1f90a] Performed BackdropJob from Inline(default) in 0.69ms
1940
+ [ActiveJob] [BackdropJob] [ac213e0e-2888-4a29-898a-6e0345ff3fd7] Enqueued BackdropJob (Job ID: 8c6eb5f4-7e47-4f7b-9f91-be5ab3c1f90a) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1941
+ [ActiveJob] [BackdropJob] [ac213e0e-2888-4a29-898a-6e0345ff3fd7] Performed BackdropJob from Inline(default) in 5.05ms
1942
+ [ActiveJob] Enqueued BackdropJob (Job ID: ac213e0e-2888-4a29-898a-6e0345ff3fd7) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:02:27.393Z\",\"2015-12-17T21:02:27.425Z\"]}}"
1943
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1944
+  (0.0ms) SAVEPOINT active_record_1
1945
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "ghi"], ["updated_at", "2015-12-17 21:02:27.441915"], ["id", 1]]
1946
+ [ActiveJob] [BackdropJob] [46e4fe78-c9bf-4953-b6f2-310b2d29e93c] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-17T21:02:27.425Z\",\"2015-12-17T21:02:27.435Z\"]}}"
1947
+ [ActiveJob] [BackdropJob] [46e4fe78-c9bf-4953-b6f2-310b2d29e93c] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1948
+ [ActiveJob] [BackdropJob] [46e4fe78-c9bf-4953-b6f2-310b2d29e93c] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "def"], ["updated_at", "2015-12-17 21:02:27.443428"], ["id", 1]]
1949
+ [ActiveJob] [BackdropJob] [46e4fe78-c9bf-4953-b6f2-310b2d29e93c] [BackdropJob] [01b62df2-7cfa-4f8b-8bdf-3fd9b4566d2a] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1950
+ [ActiveJob] [BackdropJob] [46e4fe78-c9bf-4953-b6f2-310b2d29e93c] [BackdropJob] [01b62df2-7cfa-4f8b-8bdf-3fd9b4566d2a] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1951
+ [ActiveJob] [BackdropJob] [46e4fe78-c9bf-4953-b6f2-310b2d29e93c] [BackdropJob] [01b62df2-7cfa-4f8b-8bdf-3fd9b4566d2a] Performed BackdropJob from Inline(default) in 0.48ms
1952
+ [ActiveJob] [BackdropJob] [46e4fe78-c9bf-4953-b6f2-310b2d29e93c] Enqueued BackdropJob (Job ID: 01b62df2-7cfa-4f8b-8bdf-3fd9b4566d2a) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1953
+ [ActiveJob] [BackdropJob] [46e4fe78-c9bf-4953-b6f2-310b2d29e93c] Performed BackdropJob from Inline(default) in 2.41ms
1954
+ [ActiveJob] Enqueued BackdropJob (Job ID: 46e4fe78-c9bf-4953-b6f2-310b2d29e93c) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-17T21:02:27.425Z\",\"2015-12-17T21:02:27.435Z\"]}}"
1955
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1956
+  (0.1ms) rollback transaction
1957
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1958
+  (90.4ms) begin transaction
1959
+ ------------------------
1960
+ BackdropTest: test_truth
1961
+ ------------------------
1962
+  (0.1ms) rollback transaction
1963
+  (0.0ms) begin transaction
1964
+ ---------------------------------------------
1965
+ ActAsBackdropTest: test_model_act_as_backdrop
1966
+ ---------------------------------------------
1967
+  (0.1ms) SAVEPOINT active_record_1
1968
+ SQL (4.2ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 21:03:01.649918"], ["updated_at", "2015-12-17 21:03:01.649918"]]
1969
+ [ActiveJob] [BackdropJob] [713da56e-f3fa-4ca8-8f36-e0a450d353c0] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1970
+ [ActiveJob] [BackdropJob] [713da56e-f3fa-4ca8-8f36-e0a450d353c0] Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1971
+ [ActiveJob] [BackdropJob] [713da56e-f3fa-4ca8-8f36-e0a450d353c0] Performed BackdropJob from Inline(default) in 99.81ms
1972
+ [ActiveJob] Enqueued BackdropJob (Job ID: 713da56e-f3fa-4ca8-8f36-e0a450d353c0) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1973
+  (5.9ms) RELEASE SAVEPOINT active_record_1
1974
+  (0.1ms) SAVEPOINT active_record_1
1975
+ SQL (0.3ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 21:03:01.768358"], ["id", 1]]
1976
+ [ActiveJob] [BackdropJob] [aa278536-8a9b-4443-b649-1bafa3044d95] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:03:01.649Z\"],\"updated_at\":[null,\"2015-12-17T21:03:01.649Z\"],\"id\":[null,1]}}"
1977
+ [ActiveJob] [BackdropJob] [aa278536-8a9b-4443-b649-1bafa3044d95] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1978
+ [ActiveJob] [BackdropJob] [aa278536-8a9b-4443-b649-1bafa3044d95] Performed BackdropJob from Inline(default) in 0.66ms
1979
+ [ActiveJob] Enqueued BackdropJob (Job ID: aa278536-8a9b-4443-b649-1bafa3044d95) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:03:01.649Z\"],\"updated_at\":[null,\"2015-12-17T21:03:01.649Z\"],\"id\":[null,1]}}"
1980
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1981
+  (0.0ms) SAVEPOINT active_record_1
1982
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 21:03:01.772041"], ["id", 1]]
1983
+ [ActiveJob] [BackdropJob] [577ee009-f51e-432a-8fb0-354b49098027] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:03:01.649Z\",\"2015-12-17T21:03:01.768Z\"]}}"
1984
+ [ActiveJob] [BackdropJob] [577ee009-f51e-432a-8fb0-354b49098027] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1985
+ [ActiveJob] [BackdropJob] [577ee009-f51e-432a-8fb0-354b49098027] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 21:03:01.773836"], ["id", 1]]
1986
+ [ActiveJob] [BackdropJob] [577ee009-f51e-432a-8fb0-354b49098027] [BackdropJob] [4a11b47e-9a84-4b31-a6ab-9176300170ea] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1987
+ [ActiveJob] [BackdropJob] [577ee009-f51e-432a-8fb0-354b49098027] [BackdropJob] [4a11b47e-9a84-4b31-a6ab-9176300170ea] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1988
+ [ActiveJob] [BackdropJob] [577ee009-f51e-432a-8fb0-354b49098027] [BackdropJob] [4a11b47e-9a84-4b31-a6ab-9176300170ea] Performed BackdropJob from Inline(default) in 0.64ms
1989
+ [ActiveJob] [BackdropJob] [577ee009-f51e-432a-8fb0-354b49098027] Enqueued BackdropJob (Job ID: 4a11b47e-9a84-4b31-a6ab-9176300170ea) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1990
+ [ActiveJob] [BackdropJob] [577ee009-f51e-432a-8fb0-354b49098027] Performed BackdropJob from Inline(default) in 4.35ms
1991
+ [ActiveJob] Enqueued BackdropJob (Job ID: 577ee009-f51e-432a-8fb0-354b49098027) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:03:01.649Z\",\"2015-12-17T21:03:01.768Z\"]}}"
1992
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1993
+  (0.0ms) SAVEPOINT active_record_1
1994
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "ghi"], ["updated_at", "2015-12-17 21:03:01.778058"], ["id", 1]]
1995
+ [ActiveJob] [BackdropJob] [188f7eb3-f326-4e1d-860b-b731d46d9b4e] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-17T21:03:01.768Z\",\"2015-12-17T21:03:01.772Z\"]}}"
1996
+ [ActiveJob] [BackdropJob] [188f7eb3-f326-4e1d-860b-b731d46d9b4e] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
1997
+ [ActiveJob] [BackdropJob] [188f7eb3-f326-4e1d-860b-b731d46d9b4e] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "def"], ["updated_at", "2015-12-17 21:03:01.779838"], ["id", 1]]
1998
+ [ActiveJob] [BackdropJob] [188f7eb3-f326-4e1d-860b-b731d46d9b4e] [BackdropJob] [586d779e-2fb9-4de7-824d-b5d412459a4a] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
1999
+ [ActiveJob] [BackdropJob] [188f7eb3-f326-4e1d-860b-b731d46d9b4e] [BackdropJob] [586d779e-2fb9-4de7-824d-b5d412459a4a] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2000
+ [ActiveJob] [BackdropJob] [188f7eb3-f326-4e1d-860b-b731d46d9b4e] [BackdropJob] [586d779e-2fb9-4de7-824d-b5d412459a4a] Performed BackdropJob from Inline(default) in 0.57ms
2001
+ [ActiveJob] [BackdropJob] [188f7eb3-f326-4e1d-860b-b731d46d9b4e] Enqueued BackdropJob (Job ID: 586d779e-2fb9-4de7-824d-b5d412459a4a) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2002
+ [ActiveJob] [BackdropJob] [188f7eb3-f326-4e1d-860b-b731d46d9b4e] Performed BackdropJob from Inline(default) in 2.74ms
2003
+ [ActiveJob] Enqueued BackdropJob (Job ID: 188f7eb3-f326-4e1d-860b-b731d46d9b4e) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-17T21:03:01.768Z\",\"2015-12-17T21:03:01.772Z\"]}}"
2004
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2005
+  (0.1ms) rollback transaction
2006
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2007
+  (0.1ms) begin transaction
2008
+ ---------------------------------------------
2009
+ ActAsBackdropTest: test_model_act_as_backdrop
2010
+ ---------------------------------------------
2011
+  (0.1ms) SAVEPOINT active_record_1
2012
+ SQL (1.9ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 21:03:19.357907"], ["updated_at", "2015-12-17 21:03:19.357907"]]
2013
+ [ActiveJob] [BackdropJob] [40e2efa5-3333-4bcf-a6bb-041e4de4120e] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2014
+ [ActiveJob] [BackdropJob] [40e2efa5-3333-4bcf-a6bb-041e4de4120e] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2015
+ [ActiveJob] [BackdropJob] [40e2efa5-3333-4bcf-a6bb-041e4de4120e] Performed BackdropJob from Inline(default) in 16.96ms
2016
+ [ActiveJob] Enqueued BackdropJob (Job ID: 40e2efa5-3333-4bcf-a6bb-041e4de4120e) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2017
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2018
+  (0.1ms) SAVEPOINT active_record_1
2019
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 21:03:19.386337"], ["id", 1]]
2020
+ [ActiveJob] [BackdropJob] [a70aaade-7915-402b-b7e7-4fdba18000a7] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:03:19.357Z\"],\"updated_at\":[null,\"2015-12-17T21:03:19.357Z\"],\"id\":[null,1]}}"
2021
+ [ActiveJob] [BackdropJob] [a70aaade-7915-402b-b7e7-4fdba18000a7] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2022
+ [ActiveJob] [BackdropJob] [a70aaade-7915-402b-b7e7-4fdba18000a7] Performed BackdropJob from Inline(default) in 0.55ms
2023
+ [ActiveJob] Enqueued BackdropJob (Job ID: a70aaade-7915-402b-b7e7-4fdba18000a7) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:03:19.357Z\"],\"updated_at\":[null,\"2015-12-17T21:03:19.357Z\"],\"id\":[null,1]}}"
2024
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2025
+  (0.0ms) SAVEPOINT active_record_1
2026
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 21:03:19.389951"], ["id", 1]]
2027
+ [ActiveJob] [BackdropJob] [703e7425-c78c-436d-8f30-5e113caaa401] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:03:19.357Z\",\"2015-12-17T21:03:19.386Z\"]}}"
2028
+ [ActiveJob] [BackdropJob] [703e7425-c78c-436d-8f30-5e113caaa401] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2029
+ [ActiveJob] [BackdropJob] [703e7425-c78c-436d-8f30-5e113caaa401] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 21:03:19.391514"], ["id", 1]]
2030
+ [ActiveJob] [BackdropJob] [703e7425-c78c-436d-8f30-5e113caaa401] [BackdropJob] [f2eb7bb1-432c-41d4-9779-19008b200281] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2031
+ [ActiveJob] [BackdropJob] [703e7425-c78c-436d-8f30-5e113caaa401] [BackdropJob] [f2eb7bb1-432c-41d4-9779-19008b200281] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2032
+ [ActiveJob] [BackdropJob] [703e7425-c78c-436d-8f30-5e113caaa401] [BackdropJob] [f2eb7bb1-432c-41d4-9779-19008b200281] Performed BackdropJob from Inline(default) in 0.51ms
2033
+ [ActiveJob] [BackdropJob] [703e7425-c78c-436d-8f30-5e113caaa401] Enqueued BackdropJob (Job ID: f2eb7bb1-432c-41d4-9779-19008b200281) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2034
+ [ActiveJob] [BackdropJob] [703e7425-c78c-436d-8f30-5e113caaa401] Performed BackdropJob from Inline(default) in 2.72ms
2035
+ [ActiveJob] Enqueued BackdropJob (Job ID: 703e7425-c78c-436d-8f30-5e113caaa401) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:03:19.357Z\",\"2015-12-17T21:03:19.386Z\"]}}"
2036
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2037
+  (0.0ms) SAVEPOINT active_record_1
2038
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "ghi"], ["updated_at", "2015-12-17 21:03:19.394060"], ["id", 1]]
2039
+ [ActiveJob] [BackdropJob] [eb927557-15f0-4a65-b19e-b97abc2ba7f2] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-17T21:03:19.386Z\",\"2015-12-17T21:03:19.389Z\"]}}"
2040
+ [ActiveJob] [BackdropJob] [eb927557-15f0-4a65-b19e-b97abc2ba7f2] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2041
+ [ActiveJob] [BackdropJob] [eb927557-15f0-4a65-b19e-b97abc2ba7f2] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "def"], ["updated_at", "2015-12-17 21:03:19.395625"], ["id", 1]]
2042
+ [ActiveJob] [BackdropJob] [eb927557-15f0-4a65-b19e-b97abc2ba7f2] [BackdropJob] [d703bbc0-d6d3-4200-b9bf-3cfb435cfd9e] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2043
+ [ActiveJob] [BackdropJob] [eb927557-15f0-4a65-b19e-b97abc2ba7f2] [BackdropJob] [d703bbc0-d6d3-4200-b9bf-3cfb435cfd9e] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2044
+ [ActiveJob] [BackdropJob] [eb927557-15f0-4a65-b19e-b97abc2ba7f2] [BackdropJob] [d703bbc0-d6d3-4200-b9bf-3cfb435cfd9e] Performed BackdropJob from Inline(default) in 0.52ms
2045
+ [ActiveJob] [BackdropJob] [eb927557-15f0-4a65-b19e-b97abc2ba7f2] Enqueued BackdropJob (Job ID: d703bbc0-d6d3-4200-b9bf-3cfb435cfd9e) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2046
+ [ActiveJob] [BackdropJob] [eb927557-15f0-4a65-b19e-b97abc2ba7f2] Performed BackdropJob from Inline(default) in 2.44ms
2047
+ [ActiveJob] Enqueued BackdropJob (Job ID: eb927557-15f0-4a65-b19e-b97abc2ba7f2) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-17T21:03:19.386Z\",\"2015-12-17T21:03:19.389Z\"]}}"
2048
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2049
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2050
+  (0.1ms) rollback transaction
2051
+  (0.1ms) begin transaction
2052
+ ------------------------
2053
+ BackdropTest: test_truth
2054
+ ------------------------
2055
+  (0.0ms) rollback transaction
2056
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2057
+  (0.1ms) begin transaction
2058
+ ------------------------
2059
+ BackdropTest: test_truth
2060
+ ------------------------
2061
+  (0.1ms) rollback transaction
2062
+  (0.1ms) begin transaction
2063
+ ---------------------------------------------
2064
+ ActAsBackdropTest: test_model_act_as_backdrop
2065
+ ---------------------------------------------
2066
+  (0.1ms) SAVEPOINT active_record_1
2067
+ SQL (0.9ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 21:04:01.629944"], ["updated_at", "2015-12-17 21:04:01.629944"]]
2068
+ [ActiveJob] [BackdropJob] [cdf06554-b1ac-4a92-b252-e0c739672a51] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2069
+ [ActiveJob] [BackdropJob] [cdf06554-b1ac-4a92-b252-e0c739672a51] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2070
+ [ActiveJob] [BackdropJob] [cdf06554-b1ac-4a92-b252-e0c739672a51] Performed BackdropJob from Inline(default) in 13.26ms
2071
+ [ActiveJob] Enqueued BackdropJob (Job ID: cdf06554-b1ac-4a92-b252-e0c739672a51) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2072
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2073
+  (0.1ms) SAVEPOINT active_record_1
2074
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 21:04:01.654415"], ["id", 1]]
2075
+ [ActiveJob] [BackdropJob] [6fe75de9-c961-42f0-beca-e824298ee2fd] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:04:01.629Z\"],\"updated_at\":[null,\"2015-12-17T21:04:01.629Z\"],\"id\":[null,1]}}"
2076
+ [ActiveJob] [BackdropJob] [6fe75de9-c961-42f0-beca-e824298ee2fd] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2077
+ [ActiveJob] [BackdropJob] [6fe75de9-c961-42f0-beca-e824298ee2fd] Performed BackdropJob from Inline(default) in 1.12ms
2078
+ [ActiveJob] Enqueued BackdropJob (Job ID: 6fe75de9-c961-42f0-beca-e824298ee2fd) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:04:01.629Z\"],\"updated_at\":[null,\"2015-12-17T21:04:01.629Z\"],\"id\":[null,1]}}"
2079
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2080
+  (0.1ms) SAVEPOINT active_record_1
2081
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 21:04:01.659311"], ["id", 1]]
2082
+ [ActiveJob] [BackdropJob] [ece60aca-b1b6-4fb8-912d-73b3977359e9] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:04:01.629Z\",\"2015-12-17T21:04:01.654Z\"]}}"
2083
+ [ActiveJob] [BackdropJob] [ece60aca-b1b6-4fb8-912d-73b3977359e9] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2084
+ [ActiveJob] [BackdropJob] [ece60aca-b1b6-4fb8-912d-73b3977359e9] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 21:04:01.662442"], ["id", 1]]
2085
+ [ActiveJob] [BackdropJob] [ece60aca-b1b6-4fb8-912d-73b3977359e9] [BackdropJob] [ea6d3a99-4dd7-4bde-965e-3542aa4986ee] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2086
+ [ActiveJob] [BackdropJob] [ece60aca-b1b6-4fb8-912d-73b3977359e9] [BackdropJob] [ea6d3a99-4dd7-4bde-965e-3542aa4986ee] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2087
+ [ActiveJob] [BackdropJob] [ece60aca-b1b6-4fb8-912d-73b3977359e9] [BackdropJob] [ea6d3a99-4dd7-4bde-965e-3542aa4986ee] Performed BackdropJob from Inline(default) in 0.53ms
2088
+ [ActiveJob] [BackdropJob] [ece60aca-b1b6-4fb8-912d-73b3977359e9] Enqueued BackdropJob (Job ID: ea6d3a99-4dd7-4bde-965e-3542aa4986ee) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2089
+ [ActiveJob] [BackdropJob] [ece60aca-b1b6-4fb8-912d-73b3977359e9] Performed BackdropJob from Inline(default) in 4.24ms
2090
+ [ActiveJob] Enqueued BackdropJob (Job ID: ece60aca-b1b6-4fb8-912d-73b3977359e9) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:04:01.629Z\",\"2015-12-17T21:04:01.654Z\"]}}"
2091
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2092
+  (0.0ms) SAVEPOINT active_record_1
2093
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-17 21:04:01.665791"], ["id", 1]]
2094
+ [ActiveJob] [BackdropJob] [e393a663-3e3b-4fbe-b8c2-6589e6f76e2b] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-17T21:04:01.654Z\",\"2015-12-17T21:04:01.659Z\"]}}"
2095
+ [ActiveJob] [BackdropJob] [e393a663-3e3b-4fbe-b8c2-6589e6f76e2b] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2096
+ [ActiveJob] [BackdropJob] [e393a663-3e3b-4fbe-b8c2-6589e6f76e2b] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "def"], ["updated_at", "2015-12-17 21:04:01.667232"], ["id", 1]]
2097
+ [ActiveJob] [BackdropJob] [e393a663-3e3b-4fbe-b8c2-6589e6f76e2b] [BackdropJob] [7a85ab96-ca79-423b-a5c1-5560a06e3801] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2098
+ [ActiveJob] [BackdropJob] [e393a663-3e3b-4fbe-b8c2-6589e6f76e2b] [BackdropJob] [7a85ab96-ca79-423b-a5c1-5560a06e3801] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2099
+ [ActiveJob] [BackdropJob] [e393a663-3e3b-4fbe-b8c2-6589e6f76e2b] [BackdropJob] [7a85ab96-ca79-423b-a5c1-5560a06e3801] Performed BackdropJob from Inline(default) in 0.79ms
2100
+ [ActiveJob] [BackdropJob] [e393a663-3e3b-4fbe-b8c2-6589e6f76e2b] Enqueued BackdropJob (Job ID: 7a85ab96-ca79-423b-a5c1-5560a06e3801) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2101
+ [ActiveJob] [BackdropJob] [e393a663-3e3b-4fbe-b8c2-6589e6f76e2b] Performed BackdropJob from Inline(default) in 2.56ms
2102
+ [ActiveJob] Enqueued BackdropJob (Job ID: e393a663-3e3b-4fbe-b8c2-6589e6f76e2b) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-17T21:04:01.654Z\",\"2015-12-17T21:04:01.659Z\"]}}"
2103
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2104
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2105
+  (0.1ms) rollback transaction
2106
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2107
+  (0.2ms) begin transaction
2108
+ ---------------------------------------------
2109
+ ActAsBackdropTest: test_model_act_as_backdrop
2110
+ ---------------------------------------------
2111
+  (0.2ms) SAVEPOINT active_record_1
2112
+ SQL (2.1ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 21:05:17.939063"], ["updated_at", "2015-12-17 21:05:17.939063"]]
2113
+ [ActiveJob] [BackdropJob] [ddc531d2-c6de-4e51-a2cc-68aab8078c84] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2114
+ [ActiveJob] [BackdropJob] [ddc531d2-c6de-4e51-a2cc-68aab8078c84] Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2115
+ [ActiveJob] [BackdropJob] [ddc531d2-c6de-4e51-a2cc-68aab8078c84] Performed BackdropJob from Inline(default) in 13.38ms
2116
+ [ActiveJob] Enqueued BackdropJob (Job ID: ddc531d2-c6de-4e51-a2cc-68aab8078c84) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2117
+  (0.4ms) RELEASE SAVEPOINT active_record_1
2118
+  (0.0ms) SAVEPOINT active_record_1
2119
+ SQL (0.6ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 21:05:17.963059"], ["id", 1]]
2120
+ [ActiveJob] [BackdropJob] [f3efce33-0e82-4ab2-96af-4e6cf2ca7e78] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:05:17.939Z\"],\"updated_at\":[null,\"2015-12-17T21:05:17.939Z\"],\"id\":[null,1]}}"
2121
+ [ActiveJob] [BackdropJob] [f3efce33-0e82-4ab2-96af-4e6cf2ca7e78] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2122
+ [ActiveJob] [BackdropJob] [f3efce33-0e82-4ab2-96af-4e6cf2ca7e78] Performed BackdropJob from Inline(default) in 1.15ms
2123
+ [ActiveJob] Enqueued BackdropJob (Job ID: f3efce33-0e82-4ab2-96af-4e6cf2ca7e78) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:05:17.939Z\"],\"updated_at\":[null,\"2015-12-17T21:05:17.939Z\"],\"id\":[null,1]}}"
2124
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2125
+  (0.1ms) SAVEPOINT active_record_1
2126
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 21:05:17.974688"], ["id", 1]]
2127
+ [ActiveJob] [BackdropJob] [89f14e1f-a5b0-45bb-b4bc-59ad3d14ab3a] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:05:17.939Z\",\"2015-12-17T21:05:17.963Z\"]}}"
2128
+ [ActiveJob] [BackdropJob] [89f14e1f-a5b0-45bb-b4bc-59ad3d14ab3a] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2129
+ [ActiveJob] [BackdropJob] [89f14e1f-a5b0-45bb-b4bc-59ad3d14ab3a] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 21:05:17.977854"], ["id", 1]]
2130
+ [ActiveJob] [BackdropJob] [89f14e1f-a5b0-45bb-b4bc-59ad3d14ab3a] [BackdropJob] [6608b6f7-bcf9-42e5-8f5a-bd59bfd6c5e1] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2131
+ [ActiveJob] [BackdropJob] [89f14e1f-a5b0-45bb-b4bc-59ad3d14ab3a] [BackdropJob] [6608b6f7-bcf9-42e5-8f5a-bd59bfd6c5e1] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2132
+ [ActiveJob] [BackdropJob] [89f14e1f-a5b0-45bb-b4bc-59ad3d14ab3a] [BackdropJob] [6608b6f7-bcf9-42e5-8f5a-bd59bfd6c5e1] Performed BackdropJob from Inline(default) in 1.25ms
2133
+ [ActiveJob] [BackdropJob] [89f14e1f-a5b0-45bb-b4bc-59ad3d14ab3a] Enqueued BackdropJob (Job ID: 6608b6f7-bcf9-42e5-8f5a-bd59bfd6c5e1) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2134
+ [ActiveJob] [BackdropJob] [89f14e1f-a5b0-45bb-b4bc-59ad3d14ab3a] Performed BackdropJob from Inline(default) in 6.25ms
2135
+ [ActiveJob] Enqueued BackdropJob (Job ID: 89f14e1f-a5b0-45bb-b4bc-59ad3d14ab3a) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:05:17.939Z\",\"2015-12-17T21:05:17.963Z\"]}}"
2136
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2137
+  (0.1ms) SAVEPOINT active_record_1
2138
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-17 21:05:17.983897"], ["id", 1]]
2139
+ [ActiveJob] [BackdropJob] [693eeec5-1182-4cda-975e-a4f6362964b2] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-17T21:05:17.963Z\",\"2015-12-17T21:05:17.974Z\"]}}"
2140
+ [ActiveJob] [BackdropJob] [693eeec5-1182-4cda-975e-a4f6362964b2] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2141
+ [ActiveJob] [BackdropJob] [693eeec5-1182-4cda-975e-a4f6362964b2] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "def"], ["updated_at", "2015-12-17 21:05:17.985746"], ["id", 1]]
2142
+ [ActiveJob] [BackdropJob] [693eeec5-1182-4cda-975e-a4f6362964b2] [BackdropJob] [21c59b94-3791-4868-bb2b-700acdce2f77] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2143
+ [ActiveJob] [BackdropJob] [693eeec5-1182-4cda-975e-a4f6362964b2] [BackdropJob] [21c59b94-3791-4868-bb2b-700acdce2f77] Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2144
+ [ActiveJob] [BackdropJob] [693eeec5-1182-4cda-975e-a4f6362964b2] [BackdropJob] [21c59b94-3791-4868-bb2b-700acdce2f77] Performed BackdropJob from Inline(default) in 0.52ms
2145
+ [ActiveJob] [BackdropJob] [693eeec5-1182-4cda-975e-a4f6362964b2] Enqueued BackdropJob (Job ID: 21c59b94-3791-4868-bb2b-700acdce2f77) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2146
+ [ActiveJob] [BackdropJob] [693eeec5-1182-4cda-975e-a4f6362964b2] Performed BackdropJob from Inline(default) in 2.4ms
2147
+ [ActiveJob] Enqueued BackdropJob (Job ID: 693eeec5-1182-4cda-975e-a4f6362964b2) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-17T21:05:17.963Z\",\"2015-12-17T21:05:17.974Z\"]}}"
2148
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2149
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2150
+  (0.3ms) rollback transaction
2151
+  (0.0ms) begin transaction
2152
+ ------------------------
2153
+ BackdropTest: test_truth
2154
+ ------------------------
2155
+  (0.0ms) rollback transaction
2156
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2157
+  (0.2ms) begin transaction
2158
+ ------------------------
2159
+ BackdropTest: test_truth
2160
+ ------------------------
2161
+  (0.2ms) rollback transaction
2162
+  (0.1ms) begin transaction
2163
+ ---------------------------------------------
2164
+ ActAsBackdropTest: test_model_act_as_backdrop
2165
+ ---------------------------------------------
2166
+  (0.1ms) SAVEPOINT active_record_1
2167
+ SQL (5.4ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 21:05:38.255473"], ["updated_at", "2015-12-17 21:05:38.255473"]]
2168
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2169
+  (0.1ms) SAVEPOINT active_record_1
2170
+ SQL (0.5ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 21:05:38.266741"], ["id", 1]]
2171
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2172
+  (0.1ms) SAVEPOINT active_record_1
2173
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 21:05:38.274694"], ["id", 1]]
2174
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2175
+  (0.1ms) SAVEPOINT active_record_1
2176
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-17 21:05:38.276706"], ["id", 1]]
2177
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2178
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2179
+  (0.2ms) rollback transaction
2180
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2181
+  (2.1ms) begin transaction
2182
+ ------------------------
2183
+ BackdropTest: test_truth
2184
+ ------------------------
2185
+  (0.1ms) rollback transaction
2186
+  (0.1ms) begin transaction
2187
+ ---------------------------------------------
2188
+ ActAsBackdropTest: test_model_act_as_backdrop
2189
+ ---------------------------------------------
2190
+  (0.2ms) SAVEPOINT active_record_1
2191
+ SQL (10.4ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 21:06:10.877797"], ["updated_at", "2015-12-17 21:06:10.877797"]]
2192
+ [ActiveJob] [BackdropJob] [5f4dc56e-3f19-42c3-8236-af7e6d648a39] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2193
+ [ActiveJob] [BackdropJob] [5f4dc56e-3f19-42c3-8236-af7e6d648a39] Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2194
+ [ActiveJob] [BackdropJob] [5f4dc56e-3f19-42c3-8236-af7e6d648a39] Performed BackdropJob from Inline(default) in 15.31ms
2195
+ [ActiveJob] Enqueued BackdropJob (Job ID: 5f4dc56e-3f19-42c3-8236-af7e6d648a39) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2196
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2197
+  (0.1ms) SAVEPOINT active_record_1
2198
+ SQL (0.5ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 21:06:10.914356"], ["id", 1]]
2199
+ [ActiveJob] [BackdropJob] [4b3afbbf-e580-42e2-b284-18df5675b050] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:06:10.877Z\"],\"updated_at\":[null,\"2015-12-17T21:06:10.877Z\"],\"id\":[null,1]}}"
2200
+ [ActiveJob] [BackdropJob] [4b3afbbf-e580-42e2-b284-18df5675b050] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2201
+ [ActiveJob] [BackdropJob] [4b3afbbf-e580-42e2-b284-18df5675b050] Performed BackdropJob from Inline(default) in 1.29ms
2202
+ [ActiveJob] Enqueued BackdropJob (Job ID: 4b3afbbf-e580-42e2-b284-18df5675b050) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:06:10.877Z\"],\"updated_at\":[null,\"2015-12-17T21:06:10.877Z\"],\"id\":[null,1]}}"
2203
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2204
+  (0.1ms) SAVEPOINT active_record_1
2205
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 21:06:10.920038"], ["id", 1]]
2206
+ [ActiveJob] [BackdropJob] [ec8089c4-e777-49a9-8f37-52ab2f54ed34] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:06:10.877Z\",\"2015-12-17T21:06:10.914Z\"]}}"
2207
+ [ActiveJob] [BackdropJob] [ec8089c4-e777-49a9-8f37-52ab2f54ed34] Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2208
+ [ActiveJob] [BackdropJob] [ec8089c4-e777-49a9-8f37-52ab2f54ed34] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 21:06:10.923286"], ["id", 1]]
2209
+ [ActiveJob] [BackdropJob] [ec8089c4-e777-49a9-8f37-52ab2f54ed34] [BackdropJob] [e6245db8-9775-446d-9839-f040faba9655] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2210
+ [ActiveJob] [BackdropJob] [ec8089c4-e777-49a9-8f37-52ab2f54ed34] [BackdropJob] [e6245db8-9775-446d-9839-f040faba9655] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2211
+ [ActiveJob] [BackdropJob] [ec8089c4-e777-49a9-8f37-52ab2f54ed34] [BackdropJob] [e6245db8-9775-446d-9839-f040faba9655] Performed BackdropJob from Inline(default) in 1.93ms
2212
+ [ActiveJob] [BackdropJob] [ec8089c4-e777-49a9-8f37-52ab2f54ed34] Enqueued BackdropJob (Job ID: e6245db8-9775-446d-9839-f040faba9655) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2213
+ [ActiveJob] [BackdropJob] [ec8089c4-e777-49a9-8f37-52ab2f54ed34] Performed BackdropJob from Inline(default) in 8.0ms
2214
+ [ActiveJob] Enqueued BackdropJob (Job ID: ec8089c4-e777-49a9-8f37-52ab2f54ed34) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:06:10.877Z\",\"2015-12-17T21:06:10.914Z\"]}}"
2215
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2216
+  (0.1ms) SAVEPOINT active_record_1
2217
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-17 21:06:10.931069"], ["id", 1]]
2218
+ [ActiveJob] [BackdropJob] [0a487e20-8a5c-4fc1-a3c3-3b55457e172d] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-17T21:06:10.914Z\",\"2015-12-17T21:06:10.920Z\"]}}"
2219
+ [ActiveJob] [BackdropJob] [0a487e20-8a5c-4fc1-a3c3-3b55457e172d] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2220
+ [ActiveJob] [BackdropJob] [0a487e20-8a5c-4fc1-a3c3-3b55457e172d] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "def"], ["updated_at", "2015-12-17 21:06:10.935327"], ["id", 1]]
2221
+ [ActiveJob] [BackdropJob] [0a487e20-8a5c-4fc1-a3c3-3b55457e172d] [BackdropJob] [eca0bbb3-9fc7-4cac-88f6-d55b07faaa14] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2222
+ [ActiveJob] [BackdropJob] [0a487e20-8a5c-4fc1-a3c3-3b55457e172d] [BackdropJob] [eca0bbb3-9fc7-4cac-88f6-d55b07faaa14] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2223
+ [ActiveJob] [BackdropJob] [0a487e20-8a5c-4fc1-a3c3-3b55457e172d] [BackdropJob] [eca0bbb3-9fc7-4cac-88f6-d55b07faaa14] Performed BackdropJob from Inline(default) in 1.02ms
2224
+ [ActiveJob] [BackdropJob] [0a487e20-8a5c-4fc1-a3c3-3b55457e172d] Enqueued BackdropJob (Job ID: eca0bbb3-9fc7-4cac-88f6-d55b07faaa14) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2225
+ [ActiveJob] [BackdropJob] [0a487e20-8a5c-4fc1-a3c3-3b55457e172d] Performed BackdropJob from Inline(default) in 5.13ms
2226
+ [ActiveJob] Enqueued BackdropJob (Job ID: 0a487e20-8a5c-4fc1-a3c3-3b55457e172d) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-17T21:06:10.914Z\",\"2015-12-17T21:06:10.920Z\"]}}"
2227
+  (0.4ms) RELEASE SAVEPOINT active_record_1
2228
+ Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2229
+  (0.4ms) rollback transaction
2230
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2231
+  (0.2ms) begin transaction
2232
+ ------------------------
2233
+ BackdropTest: test_truth
2234
+ ------------------------
2235
+  (0.1ms) rollback transaction
2236
+  (0.1ms) begin transaction
2237
+ ---------------------------------------------
2238
+ ActAsBackdropTest: test_model_act_as_backdrop
2239
+ ---------------------------------------------
2240
+  (0.1ms) SAVEPOINT active_record_1
2241
+ SQL (0.8ms) INSERT INTO "somethings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-12-17 21:27:32.028649"], ["updated_at", "2015-12-17 21:27:32.028649"]]
2242
+ [ActiveJob] [BackdropJob] [1edad0b3-922f-4df4-9a85-e6df76710577] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2243
+ [ActiveJob] [BackdropJob] [1edad0b3-922f-4df4-9a85-e6df76710577] Something Load (1.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2244
+ [ActiveJob] [BackdropJob] [1edad0b3-922f-4df4-9a85-e6df76710577] Performed BackdropJob from Inline(default) in 11.93ms
2245
+ [ActiveJob] Enqueued BackdropJob (Job ID: 1edad0b3-922f-4df4-9a85-e6df76710577) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2246
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2247
+  (0.0ms) SAVEPOINT active_record_1
2248
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "abc"], ["updated_at", "2015-12-17 21:27:32.051916"], ["id", 1]]
2249
+ [ActiveJob] [BackdropJob] [74416fe7-6f88-4c0b-aacd-0135d8d5717d] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:27:32.028Z\"],\"updated_at\":[null,\"2015-12-17T21:27:32.028Z\"],\"id\":[null,1]}}"
2250
+ [ActiveJob] [BackdropJob] [74416fe7-6f88-4c0b-aacd-0135d8d5717d] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2251
+ [ActiveJob] [BackdropJob] [74416fe7-6f88-4c0b-aacd-0135d8d5717d] Performed BackdropJob from Inline(default) in 1.5ms
2252
+ [ActiveJob] Enqueued BackdropJob (Job ID: 74416fe7-6f88-4c0b-aacd-0135d8d5717d) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"created_at\":[null,\"2015-12-17T21:27:32.028Z\"],\"updated_at\":[null,\"2015-12-17T21:27:32.028Z\"],\"id\":[null,1]}}"
2253
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2254
+  (0.1ms) SAVEPOINT active_record_1
2255
+ SQL (0.1ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "def"], ["updated_at", "2015-12-17 21:27:32.057905"], ["id", 1]]
2256
+ [ActiveJob] [BackdropJob] [61ee3747-0eed-44c7-8ed9-49bb32cfdf69] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:27:32.028Z\",\"2015-12-17T21:27:32.051Z\"]}}"
2257
+ [ActiveJob] [BackdropJob] [61ee3747-0eed-44c7-8ed9-49bb32cfdf69] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2258
+ [ActiveJob] [BackdropJob] [61ee3747-0eed-44c7-8ed9-49bb32cfdf69] SQL (0.2ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "abc"], ["updated_at", "2015-12-17 21:27:32.060772"], ["id", 1]]
2259
+ [ActiveJob] [BackdropJob] [61ee3747-0eed-44c7-8ed9-49bb32cfdf69] [BackdropJob] [f58613ea-cc6c-41ff-9049-ca8073736f5d] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2260
+ [ActiveJob] [BackdropJob] [61ee3747-0eed-44c7-8ed9-49bb32cfdf69] [BackdropJob] [f58613ea-cc6c-41ff-9049-ca8073736f5d] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2261
+ [ActiveJob] [BackdropJob] [61ee3747-0eed-44c7-8ed9-49bb32cfdf69] [BackdropJob] [f58613ea-cc6c-41ff-9049-ca8073736f5d] Performed BackdropJob from Inline(default) in 1.28ms
2262
+ [ActiveJob] [BackdropJob] [61ee3747-0eed-44c7-8ed9-49bb32cfdf69] Enqueued BackdropJob (Job ID: f58613ea-cc6c-41ff-9049-ca8073736f5d) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2263
+ [ActiveJob] [BackdropJob] [61ee3747-0eed-44c7-8ed9-49bb32cfdf69] Performed BackdropJob from Inline(default) in 5.81ms
2264
+ [ActiveJob] Enqueued BackdropJob (Job ID: 61ee3747-0eed-44c7-8ed9-49bb32cfdf69) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[null,\"abc\"],\"updated_at\":[\"2015-12-17T21:27:32.028Z\",\"2015-12-17T21:27:32.051Z\"]}}"
2265
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2266
+  (0.1ms) SAVEPOINT active_record_1
2267
+ SQL (0.2ms) UPDATE "somethings" SET "title" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["title", "something better"], ["updated_at", "2015-12-17 21:27:32.066723"], ["id", 1]]
2268
+ [ActiveJob] [BackdropJob] [1ce83468-4927-43d1-bbb7-c29971cd8dd3] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-17T21:27:32.051Z\",\"2015-12-17T21:27:32.057Z\"]}}"
2269
+ [ActiveJob] [BackdropJob] [1ce83468-4927-43d1-bbb7-c29971cd8dd3] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2270
+ [ActiveJob] [BackdropJob] [1ce83468-4927-43d1-bbb7-c29971cd8dd3] SQL (0.1ms) UPDATE "somethings" SET "check" = ?, "updated_at" = ? WHERE "somethings"."id" = ? [["check", "def"], ["updated_at", "2015-12-17 21:27:32.069929"], ["id", 1]]
2271
+ [ActiveJob] [BackdropJob] [1ce83468-4927-43d1-bbb7-c29971cd8dd3] [BackdropJob] [49de1333-6e1b-4198-892f-8cc2a5b3129b] Performing BackdropJob from Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2272
+ [ActiveJob] [BackdropJob] [1ce83468-4927-43d1-bbb7-c29971cd8dd3] [BackdropJob] [49de1333-6e1b-4198-892f-8cc2a5b3129b] Something Load (0.1ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2273
+ [ActiveJob] [BackdropJob] [1ce83468-4927-43d1-bbb7-c29971cd8dd3] [BackdropJob] [49de1333-6e1b-4198-892f-8cc2a5b3129b] Performed BackdropJob from Inline(default) in 0.92ms
2274
+ [ActiveJob] [BackdropJob] [1ce83468-4927-43d1-bbb7-c29971cd8dd3] Enqueued BackdropJob (Job ID: 49de1333-6e1b-4198-892f-8cc2a5b3129b) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{}}"
2275
+ [ActiveJob] [BackdropJob] [1ce83468-4927-43d1-bbb7-c29971cd8dd3] Performed BackdropJob from Inline(default) in 4.44ms
2276
+ [ActiveJob] Enqueued BackdropJob (Job ID: 1ce83468-4927-43d1-bbb7-c29971cd8dd3) to Inline(default) with arguments: "{\"class\":\"Something\",\"gid\":\"gid://dummy/Something/1\",\"changes\":{\"title\":[\"abc\",\"def\"],\"updated_at\":[\"2015-12-17T21:27:32.051Z\",\"2015-12-17T21:27:32.057Z\"]}}"
2277
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2278
+ Something Load (0.0ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = ? LIMIT 1 [["id", 1]]
2279
+  (0.1ms) rollback transaction