montage_rails 0.5.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/lib/generators/montage_rails/model_generator.rb +49 -0
  3. data/lib/generators/montage_rails/templates/model.rb +5 -0
  4. data/lib/generators/montage_rails/templates/resource.rb +22 -0
  5. data/lib/generators/montage_rails/templates/test_data.rb +6 -0
  6. data/lib/montage_rails/application_resource.rb +63 -0
  7. data/lib/montage_rails/mock_server.rb +54 -0
  8. data/lib/montage_rails/railtie.rb +5 -0
  9. data/lib/montage_rails/version.rb +1 -1
  10. data/lib/montage_rails.rb +34 -1
  11. data/test/dummy/app/models/movie.rb +1 -0
  12. data/test/dummy/app/models/test_mod.rb +3 -0
  13. data/test/dummy/app/models/test_one.rb +3 -0
  14. data/test/dummy/config/initializers/montage.rb +1 -0
  15. data/test/dummy/config/routes.rb +3 -54
  16. data/test/dummy/log/development.log +8 -0
  17. data/test/dummy/log/test.log +4074 -0
  18. data/test/dummy/test/fixtures/actors.yml +9 -0
  19. data/test/dummy/test/fixtures/movies.yml +17 -0
  20. data/test/dummy/test/fixtures/studios.yml +7 -0
  21. data/test/dummy/test/fixtures/test_mods.yml +9 -0
  22. data/test/dummy/test/fixtures/test_ones.yml +11 -0
  23. data/test/dummy/test/models/actor_test.rb +7 -0
  24. data/test/dummy/test/models/movie_test.rb +7 -0
  25. data/test/dummy/test/models/studio_test.rb +7 -0
  26. data/test/dummy/test/models/test_mod_test.rb +5 -0
  27. data/test/dummy/test/models/test_one_test.rb +7 -0
  28. data/test/dummy/test/montage_resources/actor_resource.rb +26 -0
  29. data/test/dummy/test/montage_resources/movie_resource.rb +43 -0
  30. data/test/dummy/test/montage_resources/studio_resource.rb +18 -0
  31. data/test/dummy/test/montage_resources/test_data/actor_test_data.yml +8 -0
  32. data/test/dummy/test/montage_resources/test_data/movie_test_data.yml +8 -0
  33. data/test/dummy/test/montage_resources/test_data/studio_test_data.yml +3 -0
  34. data/test/dummy/test/resources/test_mod_resource.rb +22 -0
  35. data/test/dummy/test/resources/test_one_resource.rb +26 -0
  36. data/test/dummy/test/test_helper.rb +0 -0
  37. data/test/montage_rails/application_resource_test.rb +92 -0
  38. data/test/montage_rails/base_test.rb +22 -22
  39. data/test/montage_rails/relation_test.rb +1 -1
  40. data/test/montage_rails_test.rb +57 -14
  41. data/test/test_helper.rb +9 -166
  42. metadata +108 -22
  43. data/test/resources/actor_resource.rb +0 -141
  44. data/test/resources/movie_resource.rb +0 -221
  45. data/test/resources/studio_resource.rb +0 -56
@@ -19009,3 +19009,4077 @@ MontageRailsTest: test_: .configure should have url_prefix if mock server set to
19009
19009
   (0.1ms) SELECT version FROM "schema_migrations"
19010
19010
   (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
19011
19011
  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19012
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
19013
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
19014
+  (0.1ms) select sqlite_version(*)
19015
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19016
+  (0.1ms) SELECT version FROM "schema_migrations"
19017
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
19018
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19019
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-11 08:47:52 -0700
19020
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 08:47:52 -0700
19021
+ Movie Load (18.4ms) {:filter=>{:votes__gt=>900000}}
19022
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 08:47:52 -0700
19023
+ Movie Load (16.0ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
19024
+ foo Load (0.0ms) bar
19025
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 08:47:52 -0700
19026
+ Movie Load (14.6ms) {:filter=>{:title=>"The Jerk"}}
19027
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 08:47:52 -0700
19028
+ Movie Load (16.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19029
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 08:47:53 -0700
19030
+ Movie Load (16.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19031
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 08:47:53 -0700
19032
+ Movie Load (13.1ms) {:filter=>{:title=>"Foo"}}
19033
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 08:47:53 -0700
19034
+ Movie Load (15.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19035
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 08:47:53 -0700
19036
+ Movie Load (10.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19037
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 08:47:53 -0700
19038
+ Movie Load (16.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19039
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 08:47:53 -0700
19040
+ Movie Load (15.0ms) {:filter=>{:votes__gt=>5}}
19041
+ foo Load [CACHE] (0.0ms) bar
19042
+ foo Load (0.1ms) bar
19043
+ foo Load (0.0ms) bar
19044
+ foo Load (0.0ms) bar
19045
+ foo Load (0.0ms) bar
19046
+  (0.1ms) begin transaction
19047
+ ---------------------------------------------------------------------------------------
19048
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
19049
+ ---------------------------------------------------------------------------------------
19050
+  (0.1ms) rollback transaction
19051
+  (0.2ms) begin transaction
19052
+ --------------------------------------------------------------------------------------------
19053
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
19054
+ --------------------------------------------------------------------------------------------
19055
+  (0.1ms) rollback transaction
19056
+  (0.0ms) begin transaction
19057
+ -------------------------------------------------------------
19058
+ MontageRailsTest: test_: .configure should require a domain.
19059
+ -------------------------------------------------------------
19060
+  (0.1ms) rollback transaction
19061
+  (0.0ms) begin transaction
19062
+ --------------------------------------------------------------
19063
+ MontageRailsTest: test_: .configure should accept server url.
19064
+ --------------------------------------------------------------
19065
+  (0.0ms) rollback transaction
19066
+  (0.0ms) begin transaction
19067
+ -------------------------------------------------------------------------------------------------
19068
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
19069
+ -------------------------------------------------------------------------------------------------
19070
+  (0.2ms) rollback transaction
19071
+  (0.0ms) begin transaction
19072
+ ----------------------------------------------------------------------------------------------------
19073
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
19074
+ ----------------------------------------------------------------------------------------------------
19075
+  (0.0ms) rollback transaction
19076
+  (0.0ms) begin transaction
19077
+ ---------------------------------------------------------------------------------------
19078
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
19079
+ ---------------------------------------------------------------------------------------
19080
+  (0.0ms) rollback transaction
19081
+  (0.0ms) begin transaction
19082
+ --------------------------------------------------------------------------------------
19083
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
19084
+ --------------------------------------------------------------------------------------
19085
+  (0.1ms) rollback transaction
19086
+  (0.2ms) begin transaction
19087
+ ------------------------------------------------------------------------------------------------
19088
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
19089
+ ------------------------------------------------------------------------------------------------
19090
+  (0.1ms) rollback transaction
19091
+  (0.1ms) begin transaction
19092
+ -------------------------------------------------------------------------------------------
19093
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
19094
+ -------------------------------------------------------------------------------------------
19095
+  (0.0ms) rollback transaction
19096
+  (0.0ms) begin transaction
19097
+ ---------------------------------------------------------------------------------------------------------------
19098
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
19099
+ ---------------------------------------------------------------------------------------------------------------
19100
+  (0.1ms) rollback transaction
19101
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19102
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
19103
+  (0.0ms) select sqlite_version(*)
19104
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19105
+  (0.1ms) SELECT version FROM "schema_migrations"
19106
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
19107
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19108
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-11 09:05:33 -0700
19109
+  (0.1ms) begin transaction
19110
+ --------------------------------------------------------------
19111
+ MontageRailsTest: test_: .configure should accept server url.
19112
+ --------------------------------------------------------------
19113
+  (0.1ms) rollback transaction
19114
+  (0.2ms) begin transaction
19115
+ --------------------------------------------------------------------------------------------
19116
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
19117
+ --------------------------------------------------------------------------------------------
19118
+  (0.1ms) rollback transaction
19119
+  (0.1ms) begin transaction
19120
+ -------------------------------------------------------------------------------------------
19121
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
19122
+ -------------------------------------------------------------------------------------------
19123
+  (0.1ms) rollback transaction
19124
+  (0.1ms) begin transaction
19125
+ -------------------------------------------------------------------------------------------------
19126
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
19127
+ -------------------------------------------------------------------------------------------------
19128
+  (0.1ms) rollback transaction
19129
+  (0.1ms) begin transaction
19130
+ ---------------------------------------------------------------------------------------
19131
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
19132
+ ---------------------------------------------------------------------------------------
19133
+  (0.1ms) rollback transaction
19134
+  (0.0ms) begin transaction
19135
+ ----------------------------------------------------------------------------------------------------
19136
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
19137
+ ----------------------------------------------------------------------------------------------------
19138
+  (0.1ms) rollback transaction
19139
+  (0.0ms) begin transaction
19140
+ --------------------------------------------------------------------------------------
19141
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
19142
+ --------------------------------------------------------------------------------------
19143
+  (0.0ms) rollback transaction
19144
+  (0.0ms) begin transaction
19145
+ -------------------------------------------------------------
19146
+ MontageRailsTest: test_: .configure should require a domain.
19147
+ -------------------------------------------------------------
19148
+  (0.0ms) rollback transaction
19149
+  (0.1ms) begin transaction
19150
+ ---------------------------------------------------------------------------------------
19151
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
19152
+ ---------------------------------------------------------------------------------------
19153
+  (0.1ms) rollback transaction
19154
+  (0.0ms) begin transaction
19155
+ ---------------------------------------------------------------------------------------------------------------
19156
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
19157
+ ---------------------------------------------------------------------------------------------------------------
19158
+  (0.1ms) rollback transaction
19159
+  (0.0ms) begin transaction
19160
+ ------------------------------------------------------------------------------------------------
19161
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
19162
+ ------------------------------------------------------------------------------------------------
19163
+  (0.0ms) rollback transaction
19164
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 09:05:34 -0700
19165
+ Movie Load (15.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19166
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 09:05:34 -0700
19167
+ Movie Load (13.2ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
19168
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 09:05:34 -0700
19169
+ Movie Load (19.1ms) {:filter=>{:title=>"The Jerk"}}
19170
+ foo Load (0.0ms) bar
19171
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 09:05:34 -0700
19172
+ Movie Load (13.0ms) {:filter=>{:title=>"Foo"}}
19173
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 09:05:34 -0700
19174
+ Movie Load (15.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19175
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 09:05:34 -0700
19176
+ Movie Load (13.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19177
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 09:05:34 -0700
19178
+ Movie Load (14.1ms) {:filter=>{:votes__gt=>900000}}
19179
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 09:05:34 -0700
19180
+ Movie Load (13.3ms) {:filter=>{:votes__gt=>5}}
19181
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 09:05:34 -0700
19182
+ Movie Load (15.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19183
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 09:05:34 -0700
19184
+ Movie Load (8.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19185
+ foo Load (0.1ms) bar
19186
+ foo Load [CACHE] (0.0ms) bar
19187
+ foo Load (0.0ms) bar
19188
+ foo Load (0.1ms) bar
19189
+ foo Load (0.0ms) bar
19190
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
19191
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
19192
+  (0.1ms) select sqlite_version(*)
19193
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19194
+  (0.1ms) SELECT version FROM "schema_migrations"
19195
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
19196
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19197
+  (0.1ms) begin transaction
19198
+ -------------------------------------------------------------------------------------------
19199
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
19200
+ -------------------------------------------------------------------------------------------
19201
+  (0.0ms) rollback transaction
19202
+  (0.0ms) begin transaction
19203
+ --------------------------------------------------------------
19204
+ MontageRailsTest: test_: .configure should accept server url.
19205
+ --------------------------------------------------------------
19206
+  (0.0ms) rollback transaction
19207
+  (0.0ms) begin transaction
19208
+ --------------------------------------------------------------------------------------
19209
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
19210
+ --------------------------------------------------------------------------------------
19211
+  (0.0ms) rollback transaction
19212
+  (0.1ms) begin transaction
19213
+ ---------------------------------------------------------------------------------------------------------------
19214
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
19215
+ ---------------------------------------------------------------------------------------------------------------
19216
+  (0.1ms) rollback transaction
19217
+  (0.0ms) begin transaction
19218
+ ------------------------------------------------------------------------------------------------
19219
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
19220
+ ------------------------------------------------------------------------------------------------
19221
+  (0.0ms) rollback transaction
19222
+  (0.0ms) begin transaction
19223
+ -------------------------------------------------------------------------------------------------
19224
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
19225
+ -------------------------------------------------------------------------------------------------
19226
+  (0.0ms) rollback transaction
19227
+  (0.0ms) begin transaction
19228
+ -------------------------------------------------------------
19229
+ MontageRailsTest: test_: .configure should require a domain.
19230
+ -------------------------------------------------------------
19231
+  (0.0ms) rollback transaction
19232
+  (0.0ms) begin transaction
19233
+ ---------------------------------------------------------------------------------------
19234
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
19235
+ ---------------------------------------------------------------------------------------
19236
+  (0.0ms) rollback transaction
19237
+  (0.0ms) begin transaction
19238
+ ----------------------------------------------------------------------------------------------------
19239
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
19240
+ ----------------------------------------------------------------------------------------------------
19241
+  (0.0ms) rollback transaction
19242
+  (0.0ms) begin transaction
19243
+ --------------------------------------------------------------------------------------------
19244
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
19245
+ --------------------------------------------------------------------------------------------
19246
+  (0.0ms) rollback transaction
19247
+  (0.0ms) begin transaction
19248
+ ---------------------------------------------------------------------------------------
19249
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
19250
+ ---------------------------------------------------------------------------------------
19251
+  (0.1ms) rollback transaction
19252
+ Movie Load (6.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19253
+ Movie Load (0.5ms) {:filter=>{:votes__gt=>5}}
19254
+ Movie Load (0.5ms) {:filter=>{:title=>"The Jerk"}}
19255
+ foo Load (0.0ms) bar
19256
+ Movie Load (0.5ms) {:filter=>{:title=>"Foo"}}
19257
+ Movie Load (0.5ms) {:filter=>{:votes__gt=>900000}}
19258
+ Movie Load (0.5ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
19259
+ Movie Load (0.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19260
+ Movie Load (0.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19261
+ Movie Load (0.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19262
+ foo Load [CACHE] (0.0ms) bar
19263
+ foo Load (0.0ms) bar
19264
+ foo Load (0.0ms) bar
19265
+ foo Load (0.1ms) bar
19266
+ foo Load (0.1ms) bar
19267
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19268
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
19269
+  (0.1ms) select sqlite_version(*)
19270
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19271
+  (0.1ms) SELECT version FROM "schema_migrations"
19272
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
19273
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19274
+ foo Load (0.1ms) bar
19275
+ foo Load [CACHE] (0.0ms) bar
19276
+ foo Load (0.0ms) bar
19277
+ foo Load (0.0ms) bar
19278
+ foo Load (0.0ms) bar
19279
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-11 15:57:43 -0700
19280
+  (0.1ms) begin transaction
19281
+ -------------------------------------------------------------------------------------------
19282
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
19283
+ -------------------------------------------------------------------------------------------
19284
+  (0.1ms) rollback transaction
19285
+  (0.5ms) begin transaction
19286
+ --------------------------------------------------------------------------------------------
19287
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
19288
+ --------------------------------------------------------------------------------------------
19289
+  (0.0ms) rollback transaction
19290
+  (0.0ms) begin transaction
19291
+ ---------------------------------------------------------------------------------------------------------------
19292
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
19293
+ ---------------------------------------------------------------------------------------------------------------
19294
+  (0.1ms) rollback transaction
19295
+  (0.0ms) begin transaction
19296
+ --------------------------------------------------------------
19297
+ MontageRailsTest: test_: .configure should accept server url.
19298
+ --------------------------------------------------------------
19299
+  (0.1ms) rollback transaction
19300
+  (0.0ms) begin transaction
19301
+ ------------------------------------------------------------------------------------------------
19302
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
19303
+ ------------------------------------------------------------------------------------------------
19304
+  (0.0ms) rollback transaction
19305
+  (0.1ms) begin transaction
19306
+ ---------------------------------------------------------------------------------------
19307
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
19308
+ ---------------------------------------------------------------------------------------
19309
+  (0.1ms) rollback transaction
19310
+  (0.0ms) begin transaction
19311
+ ---------------------------------------------------------------------------------------
19312
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
19313
+ ---------------------------------------------------------------------------------------
19314
+  (0.1ms) rollback transaction
19315
+  (0.1ms) begin transaction
19316
+ -------------------------------------------------------------------------------------------------
19317
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
19318
+ -------------------------------------------------------------------------------------------------
19319
+  (0.1ms) rollback transaction
19320
+  (0.0ms) begin transaction
19321
+ -------------------------------------------------------------
19322
+ MontageRailsTest: test_: .configure should require a domain.
19323
+ -------------------------------------------------------------
19324
+  (0.0ms) rollback transaction
19325
+  (0.0ms) begin transaction
19326
+ ----------------------------------------------------------------------------------------------------
19327
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
19328
+ ----------------------------------------------------------------------------------------------------
19329
+  (0.1ms) rollback transaction
19330
+  (0.0ms) begin transaction
19331
+ --------------------------------------------------------------------------------------
19332
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
19333
+ --------------------------------------------------------------------------------------
19334
+  (0.1ms) rollback transaction
19335
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 15:57:44 -0700
19336
+ Movie Load (17.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19337
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 15:57:44 -0700
19338
+ Movie Load (13.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19339
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 15:57:44 -0700
19340
+ Movie Load (9.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19341
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 15:57:44 -0700
19342
+ Movie Load (16.7ms) {:filter=>{:votes__gt=>900000}}
19343
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 15:57:44 -0700
19344
+ Movie Load (13.7ms) {:filter=>{:title=>"Foo"}}
19345
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 15:57:44 -0700
19346
+ Movie Load (14.0ms) {:filter=>{:votes__gt=>5}}
19347
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 15:57:44 -0700
19348
+ Movie Load (12.0ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
19349
+ foo Load (0.0ms) bar
19350
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 15:57:44 -0700
19351
+ Movie Load (16.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19352
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 15:57:44 -0700
19353
+ Movie Load (13.6ms) {:filter=>{:title=>"The Jerk"}}
19354
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 15:57:44 -0700
19355
+ Movie Load (13.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19356
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-11 15:59:15 -0700
19357
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 15:59:26 -0700
19358
+ Movie Load (8.6ms) {:filter=>{}, :limit=>1}
19359
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-11 16:00:36 -0700
19360
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 16:00:49 -0700
19361
+ Movie Load (6.5ms) {:filter=>{:rank=>"4"}, :limit=>1}
19362
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19363
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
19364
+  (0.1ms) select sqlite_version(*)
19365
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19366
+  (0.1ms) SELECT version FROM "schema_migrations"
19367
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
19368
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19369
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 16:04:10 -0700
19370
+ Movie Load (24.1ms) {:filter=>{:votes__gt=>900000}}
19371
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 16:04:10 -0700
19372
+ Movie Load (12.4ms) {:filter=>{:title=>"The Jerk"}}
19373
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-11 16:04:10 -0700
19374
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 16:04:10 -0700
19375
+ Movie Load (13.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19376
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 16:04:10 -0700
19377
+ Movie Load (14.0ms) {:filter=>{:title=>"Foo"}}
19378
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 16:04:10 -0700
19379
+ Movie Load (13.1ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
19380
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 16:04:10 -0700
19381
+ Movie Load (14.7ms) {:filter=>{:votes__gt=>5}}
19382
+ foo Load (0.0ms) bar
19383
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 16:04:10 -0700
19384
+ Movie Load (13.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19385
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 16:04:10 -0700
19386
+ Movie Load (20.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19387
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 16:04:10 -0700
19388
+ Movie Load (13.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19389
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 16:04:10 -0700
19390
+ Movie Load (8.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19391
+ foo Load (0.0ms) bar
19392
+ foo Load (0.0ms) bar
19393
+ foo Load (0.0ms) bar
19394
+ foo Load (0.0ms) bar
19395
+ foo Load [CACHE] (0.0ms) bar
19396
+  (0.1ms) begin transaction
19397
+ -------------------------------------------------------------
19398
+ MontageRailsTest: test_: .configure should require a domain.
19399
+ -------------------------------------------------------------
19400
+  (0.1ms) rollback transaction
19401
+  (0.5ms) begin transaction
19402
+ --------------------------------------------------------------------------------------
19403
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
19404
+ --------------------------------------------------------------------------------------
19405
+  (0.1ms) rollback transaction
19406
+  (0.0ms) begin transaction
19407
+ --------------------------------------------------------------
19408
+ MontageRailsTest: test_: .configure should accept server url.
19409
+ --------------------------------------------------------------
19410
+  (0.1ms) rollback transaction
19411
+  (0.1ms) begin transaction
19412
+ -------------------------------------------------------------------------------------------
19413
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
19414
+ -------------------------------------------------------------------------------------------
19415
+  (0.1ms) rollback transaction
19416
+  (0.0ms) begin transaction
19417
+ -------------------------------------------------------------------------------------------------
19418
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
19419
+ -------------------------------------------------------------------------------------------------
19420
+  (0.0ms) rollback transaction
19421
+  (0.0ms) begin transaction
19422
+ ---------------------------------------------------------------------------------------
19423
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
19424
+ ---------------------------------------------------------------------------------------
19425
+  (0.1ms) rollback transaction
19426
+  (0.1ms) begin transaction
19427
+ ---------------------------------------------------------------------------------------------------------------
19428
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
19429
+ ---------------------------------------------------------------------------------------------------------------
19430
+  (0.1ms) rollback transaction
19431
+  (0.1ms) begin transaction
19432
+ ----------------------------------------------------------------------------------------------------
19433
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
19434
+ ----------------------------------------------------------------------------------------------------
19435
+  (0.1ms) rollback transaction
19436
+  (0.0ms) begin transaction
19437
+ --------------------------------------------------------------------------------------------
19438
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
19439
+ --------------------------------------------------------------------------------------------
19440
+  (0.1ms) rollback transaction
19441
+  (0.0ms) begin transaction
19442
+ ---------------------------------------------------------------------------------------
19443
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
19444
+ ---------------------------------------------------------------------------------------
19445
+  (0.0ms) rollback transaction
19446
+  (0.0ms) begin transaction
19447
+ ------------------------------------------------------------------------------------------------
19448
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
19449
+ ------------------------------------------------------------------------------------------------
19450
+  (0.0ms) rollback transaction
19451
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-11 16:08:47 -0700
19452
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 16:08:47 -0700
19453
+ Movie Load (5.8ms) {:filter=>{:rank=>"4"}, :limit=>1}
19454
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 16:08:58 -0700
19455
+ Movie Load (8.5ms) {:filter=>{}}
19456
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 16:09:29 -0700
19457
+ Movie Load (6.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19458
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-11 16:09:40 -0700
19459
+ Movie Load (8.3ms) {:filter=>{:year=>"1983"}, :limit=>1}
19460
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
19461
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
19462
+  (0.0ms) select sqlite_version(*)
19463
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19464
+  (0.1ms) SELECT version FROM "schema_migrations"
19465
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
19466
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19467
+  (0.1ms) begin transaction
19468
+ ------------------------------------------------------------------------------------------------
19469
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
19470
+ ------------------------------------------------------------------------------------------------
19471
+  (0.1ms) rollback transaction
19472
+  (0.0ms) begin transaction
19473
+ --------------------------------------------------------------------------------------
19474
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
19475
+ --------------------------------------------------------------------------------------
19476
+  (0.1ms) rollback transaction
19477
+  (0.0ms) begin transaction
19478
+ ----------------------------------------------------------------------------------------------------
19479
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
19480
+ ----------------------------------------------------------------------------------------------------
19481
+  (0.1ms) rollback transaction
19482
+  (0.0ms) begin transaction
19483
+ -------------------------------------------------------------------------------------------
19484
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
19485
+ -------------------------------------------------------------------------------------------
19486
+  (0.1ms) rollback transaction
19487
+  (0.1ms) begin transaction
19488
+ ---------------------------------------------------------------------------------------
19489
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
19490
+ ---------------------------------------------------------------------------------------
19491
+  (0.1ms) rollback transaction
19492
+  (0.1ms) begin transaction
19493
+ -------------------------------------------------------------
19494
+ MontageRailsTest: test_: .configure should require a domain.
19495
+ -------------------------------------------------------------
19496
+  (0.0ms) rollback transaction
19497
+  (0.1ms) begin transaction
19498
+ -------------------------------------------------------------------------------------------------
19499
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
19500
+ -------------------------------------------------------------------------------------------------
19501
+  (0.1ms) rollback transaction
19502
+  (0.0ms) begin transaction
19503
+ --------------------------------------------------------------
19504
+ MontageRailsTest: test_: .configure should accept server url.
19505
+ --------------------------------------------------------------
19506
+  (0.1ms) rollback transaction
19507
+  (0.0ms) begin transaction
19508
+ ---------------------------------------------------------------------------------------------------------------
19509
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
19510
+ ---------------------------------------------------------------------------------------------------------------
19511
+  (0.0ms) rollback transaction
19512
+  (0.0ms) begin transaction
19513
+ --------------------------------------------------------------------------------------------
19514
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
19515
+ --------------------------------------------------------------------------------------------
19516
+  (0.0ms) rollback transaction
19517
+  (0.0ms) begin transaction
19518
+ ---------------------------------------------------------------------------------------
19519
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
19520
+ ---------------------------------------------------------------------------------------
19521
+  (0.1ms) rollback transaction
19522
+ Movie Load (0.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19523
+ Movie Load (0.7ms) {:filter=>{:votes__gt=>5}}
19524
+ Movie Load (0.4ms) {:filter=>{:title=>"The Jerk"}}
19525
+ Movie Load (0.5ms) {:filter=>{:votes__gt=>900000}}
19526
+ Movie Load (0.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19527
+ foo Load (0.0ms) bar
19528
+ Movie Load (0.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19529
+ Movie Load (0.6ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
19530
+ Movie Load (0.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19531
+ Movie Load (0.5ms) {:filter=>{:title=>"Foo"}}
19532
+ foo Load (0.1ms) bar
19533
+ foo Load (0.1ms) bar
19534
+ foo Load (0.0ms) bar
19535
+ foo Load [CACHE] (0.0ms) bar
19536
+ foo Load (0.0ms) bar
19537
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19538
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
19539
+  (0.1ms) select sqlite_version(*)
19540
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19541
+  (0.1ms) SELECT version FROM "schema_migrations"
19542
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
19543
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19544
+  (0.1ms) begin transaction
19545
+ ---------------------------------------------------------------------------------------
19546
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
19547
+ ---------------------------------------------------------------------------------------
19548
+  (0.1ms) rollback transaction
19549
+  (0.0ms) begin transaction
19550
+ ----------------------------------------------------------------------------------------------------
19551
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
19552
+ ----------------------------------------------------------------------------------------------------
19553
+  (0.1ms) rollback transaction
19554
+  (0.0ms) begin transaction
19555
+ -------------------------------------------------------------
19556
+ MontageRailsTest: test_: .configure should require a domain.
19557
+ -------------------------------------------------------------
19558
+  (0.1ms) rollback transaction
19559
+  (0.0ms) begin transaction
19560
+ --------------------------------------------------------------
19561
+ MontageRailsTest: test_: .configure should accept server url.
19562
+ --------------------------------------------------------------
19563
+  (0.1ms) rollback transaction
19564
+  (0.1ms) begin transaction
19565
+ ---------------------------------------------------------------------------------------------------------------
19566
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
19567
+ ---------------------------------------------------------------------------------------------------------------
19568
+  (0.1ms) rollback transaction
19569
+  (0.1ms) begin transaction
19570
+ --------------------------------------------------------------------------------------------
19571
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
19572
+ --------------------------------------------------------------------------------------------
19573
+  (0.1ms) rollback transaction
19574
+  (0.0ms) begin transaction
19575
+ -------------------------------------------------------------------------------------------
19576
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
19577
+ -------------------------------------------------------------------------------------------
19578
+  (0.0ms) rollback transaction
19579
+  (0.1ms) begin transaction
19580
+ ------------------------------------------------------------------------------------------------
19581
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
19582
+ ------------------------------------------------------------------------------------------------
19583
+  (0.0ms) rollback transaction
19584
+  (0.1ms) begin transaction
19585
+ ---------------------------------------------------------------------------------------
19586
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
19587
+ ---------------------------------------------------------------------------------------
19588
+  (0.1ms) rollback transaction
19589
+  (0.1ms) begin transaction
19590
+ -------------------------------------------------------------------------------------------------
19591
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
19592
+ -------------------------------------------------------------------------------------------------
19593
+  (0.0ms) rollback transaction
19594
+  (0.1ms) begin transaction
19595
+ --------------------------------------------------------------------------------------
19596
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
19597
+ --------------------------------------------------------------------------------------
19598
+  (0.1ms) rollback transaction
19599
+ Movie Load (5.0ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
19600
+ foo Load (0.0ms) bar
19601
+ Movie Load (0.5ms) {:filter=>{:votes__gt=>5}}
19602
+ Movie Load (0.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19603
+ Movie Load (0.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19604
+ Movie Load (0.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19605
+ Movie Load (0.5ms) {:filter=>{:title=>"Foo"}}
19606
+ Movie Load (0.5ms) {:filter=>{:votes__gt=>900000}}
19607
+ Movie Load (0.7ms) {:filter=>{:title=>"The Jerk"}}
19608
+ Movie Load (0.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19609
+ foo Load (0.1ms) bar
19610
+ foo Load (0.1ms) bar
19611
+ foo Load [CACHE] (0.0ms) bar
19612
+ foo Load (0.0ms) bar
19613
+ foo Load (0.1ms) bar
19614
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19615
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
19616
+  (0.1ms) select sqlite_version(*)
19617
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19618
+  (0.1ms) SELECT version FROM "schema_migrations"
19619
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
19620
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19621
+  (0.1ms) begin transaction
19622
+ ---------------------------------------------------------------------------------------------------------------
19623
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
19624
+ ---------------------------------------------------------------------------------------------------------------
19625
+  (0.1ms) rollback transaction
19626
+  (0.0ms) begin transaction
19627
+ -------------------------------------------------------------
19628
+ MontageRailsTest: test_: .configure should require a domain.
19629
+ -------------------------------------------------------------
19630
+  (0.0ms) rollback transaction
19631
+  (0.1ms) begin transaction
19632
+ -------------------------------------------------------------------------------------------------
19633
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
19634
+ -------------------------------------------------------------------------------------------------
19635
+  (0.1ms) rollback transaction
19636
+  (0.0ms) begin transaction
19637
+ ------------------------------------------------------------------------------------------------
19638
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
19639
+ ------------------------------------------------------------------------------------------------
19640
+  (0.1ms) rollback transaction
19641
+  (0.0ms) begin transaction
19642
+ -------------------------------------------------------------------------------------------
19643
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
19644
+ -------------------------------------------------------------------------------------------
19645
+  (0.0ms) rollback transaction
19646
+  (0.0ms) begin transaction
19647
+ ---------------------------------------------------------------------------------------
19648
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
19649
+ ---------------------------------------------------------------------------------------
19650
+  (0.0ms) rollback transaction
19651
+  (0.0ms) begin transaction
19652
+ --------------------------------------------------------------------------------------
19653
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
19654
+ --------------------------------------------------------------------------------------
19655
+  (0.0ms) rollback transaction
19656
+  (0.0ms) begin transaction
19657
+ ---------------------------------------------------------------------------------------
19658
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
19659
+ ---------------------------------------------------------------------------------------
19660
+  (0.0ms) rollback transaction
19661
+  (0.0ms) begin transaction
19662
+ --------------------------------------------------------------------------------------------
19663
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
19664
+ --------------------------------------------------------------------------------------------
19665
+  (0.0ms) rollback transaction
19666
+  (0.1ms) begin transaction
19667
+ ----------------------------------------------------------------------------------------------------
19668
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
19669
+ ----------------------------------------------------------------------------------------------------
19670
+  (0.1ms) rollback transaction
19671
+  (0.0ms) begin transaction
19672
+ --------------------------------------------------------------
19673
+ MontageRailsTest: test_: .configure should accept server url.
19674
+ --------------------------------------------------------------
19675
+  (0.0ms) rollback transaction
19676
+ Movie Load (3.8ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
19677
+ Movie Load (0.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19678
+ Movie Load (0.3ms) {:filter=>{:title=>"Foo"}}
19679
+ foo Load (0.0ms) bar
19680
+ Movie Load (0.2ms) {:filter=>{:votes__gt=>900000}}
19681
+ Movie Load (0.2ms) {:filter=>{:votes__gt=>5}}
19682
+ Movie Load (0.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19683
+ Movie Load (0.2ms) {:filter=>{:title=>"The Jerk"}}
19684
+ Movie Load (0.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19685
+ Movie Load (0.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19686
+ foo Load (0.1ms) bar
19687
+ foo Load (0.0ms) bar
19688
+ foo Load [CACHE] (0.0ms) bar
19689
+ foo Load (0.1ms) bar
19690
+ foo Load (0.0ms) bar
19691
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19692
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
19693
+  (0.1ms) select sqlite_version(*)
19694
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19695
+  (0.1ms) SELECT version FROM "schema_migrations"
19696
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
19697
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
19698
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19699
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19700
+ Movie Create (13.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
19701
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19702
+ Movie Update (7.9ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
19703
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19704
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19705
+ Actor Create (9.3ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
19706
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19707
+ Actor Create (6.8ms) {:movie_id=>nil, :name=>"Mark Hamill"}
19708
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19709
+ Actor Load (9.5ms) {:filter=>{:movie_id=>""}}
19710
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19711
+ Movie Create (22.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
19712
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19713
+ Movie Update (9.4ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
19714
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19715
+ Actor Create (6.9ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
19716
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19717
+ Actor Create (7.3ms) {:movie_id=>nil, :name=>"Mark Hamill"}
19718
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19719
+ MontageRails::BaseTest::TestClass Load (10.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19720
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19721
+  (0.1ms) begin transaction
19722
+ -------------------------------------------------------------
19723
+ MontageRailsTest: test_: .configure should require a domain.
19724
+ -------------------------------------------------------------
19725
+  (0.1ms) rollback transaction
19726
+  (0.2ms) begin transaction
19727
+ -------------------------------------------------------------------------------------------
19728
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
19729
+ -------------------------------------------------------------------------------------------
19730
+  (0.1ms) rollback transaction
19731
+  (0.0ms) begin transaction
19732
+ ---------------------------------------------------------------------------------------
19733
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
19734
+ ---------------------------------------------------------------------------------------
19735
+  (0.1ms) rollback transaction
19736
+  (0.1ms) begin transaction
19737
+ ------------------------------------------------------------------------------------------------
19738
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
19739
+ ------------------------------------------------------------------------------------------------
19740
+  (0.1ms) rollback transaction
19741
+  (0.0ms) begin transaction
19742
+ --------------------------------------------------------------
19743
+ MontageRailsTest: test_: .configure should accept server url.
19744
+ --------------------------------------------------------------
19745
+  (0.1ms) rollback transaction
19746
+  (0.1ms) begin transaction
19747
+ ---------------------------------------------------------------------------------------------------------------
19748
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
19749
+ ---------------------------------------------------------------------------------------------------------------
19750
+  (0.1ms) rollback transaction
19751
+  (0.0ms) begin transaction
19752
+ --------------------------------------------------------------------------------------
19753
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
19754
+ --------------------------------------------------------------------------------------
19755
+  (0.0ms) rollback transaction
19756
+  (0.0ms) begin transaction
19757
+ ----------------------------------------------------------------------------------------------------
19758
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
19759
+ ----------------------------------------------------------------------------------------------------
19760
+  (0.1ms) rollback transaction
19761
+  (0.0ms) begin transaction
19762
+ -------------------------------------------------------------------------------------------------
19763
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
19764
+ -------------------------------------------------------------------------------------------------
19765
+  (0.1ms) rollback transaction
19766
+  (0.0ms) begin transaction
19767
+ ---------------------------------------------------------------------------------------
19768
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
19769
+ ---------------------------------------------------------------------------------------
19770
+  (0.1ms) rollback transaction
19771
+  (0.0ms) begin transaction
19772
+ --------------------------------------------------------------------------------------------
19773
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
19774
+ --------------------------------------------------------------------------------------------
19775
+  (0.0ms) rollback transaction
19776
+ foo Load (0.1ms) bar
19777
+ foo Load [CACHE] (0.0ms) bar
19778
+ foo Load (0.1ms) bar
19779
+ foo Load (0.1ms) bar
19780
+ foo Load (0.1ms) bar
19781
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19782
+ Movie Load (14.6ms) {:filter=>{:title=>"The Jerk"}}
19783
+ foo Load (0.0ms) bar
19784
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19785
+ Movie Load (13.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19786
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19787
+ Movie Load (55.7ms) {:filter=>{:votes__gt=>5}}
19788
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19789
+ Movie Load (13.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19790
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19791
+ Movie Load (12.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19792
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:04 -0700
19793
+ Movie Load (8.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19794
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:05 -0700
19795
+ Movie Load (55.2ms) {:filter=>{:votes__gt=>900000}}
19796
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:05 -0700
19797
+ Movie Load (14.3ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
19798
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:05 -0700
19799
+ Movie Load (14.3ms) {:filter=>{:title=>"Foo"}}
19800
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:05 -0700
19801
+ Movie Load (14.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19802
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19803
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
19804
+  (0.1ms) select sqlite_version(*)
19805
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19806
+  (0.1ms) SELECT version FROM "schema_migrations"
19807
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
19808
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19809
+ foo Load (0.1ms) bar
19810
+ foo Load [CACHE] (0.0ms) bar
19811
+ foo Load (0.0ms) bar
19812
+ foo Load (0.0ms) bar
19813
+ foo Load (0.0ms) bar
19814
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:37:55 -0700
19815
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:37:55 -0700
19816
+ Movie Create (13.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
19817
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:37:55 -0700
19818
+ Movie Update (7.6ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
19819
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-12 12:37:55 -0700
19820
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:37:55 -0700
19821
+ Actor Create (8.4ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
19822
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:37:55 -0700
19823
+ Actor Create (7.7ms) {:movie_id=>nil, :name=>"Mark Hamill"}
19824
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-12 12:37:55 -0700
19825
+ Actor Load (10.0ms) {:filter=>{:movie_id=>""}}
19826
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:37:55 -0700
19827
+ Movie Create (14.0ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
19828
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:37:55 -0700
19829
+ Movie Update (7.4ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
19830
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:37:55 -0700
19831
+ Actor Create (8.6ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
19832
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:37:55 -0700
19833
+ Actor Create (6.7ms) {:movie_id=>nil, :name=>"Mark Hamill"}
19834
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:55 -0700
19835
+ MontageRails::BaseTest::TestClass Load (8.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19836
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:37:55 -0700
19837
+  (0.1ms) begin transaction
19838
+ ---------------------------------------------------------------------------------------
19839
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
19840
+ ---------------------------------------------------------------------------------------
19841
+  (0.1ms) rollback transaction
19842
+  (0.2ms) begin transaction
19843
+ ---------------------------------------------------------------------------------------------------------------
19844
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
19845
+ ---------------------------------------------------------------------------------------------------------------
19846
+  (0.0ms) rollback transaction
19847
+  (0.1ms) begin transaction
19848
+ --------------------------------------------------------------------------------------------
19849
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
19850
+ --------------------------------------------------------------------------------------------
19851
+  (0.1ms) rollback transaction
19852
+  (0.0ms) begin transaction
19853
+ ------------------------------------------------------------------------------------------------
19854
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
19855
+ ------------------------------------------------------------------------------------------------
19856
+  (0.1ms) rollback transaction
19857
+  (0.0ms) begin transaction
19858
+ --------------------------------------------------------------------------------------
19859
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
19860
+ --------------------------------------------------------------------------------------
19861
+  (0.0ms) rollback transaction
19862
+  (0.1ms) begin transaction
19863
+ ----------------------------------------------------------------------------------------------------
19864
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
19865
+ ----------------------------------------------------------------------------------------------------
19866
+  (0.1ms) rollback transaction
19867
+  (0.1ms) begin transaction
19868
+ -------------------------------------------------------------------------------------------------
19869
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
19870
+ -------------------------------------------------------------------------------------------------
19871
+  (0.1ms) rollback transaction
19872
+  (0.0ms) begin transaction
19873
+ -------------------------------------------------------------------------------------------
19874
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
19875
+ -------------------------------------------------------------------------------------------
19876
+  (0.1ms) rollback transaction
19877
+  (0.1ms) begin transaction
19878
+ ---------------------------------------------------------------------------------------
19879
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
19880
+ ---------------------------------------------------------------------------------------
19881
+  (0.1ms) rollback transaction
19882
+  (0.1ms) begin transaction
19883
+ -------------------------------------------------------------
19884
+ MontageRailsTest: test_: .configure should require a domain.
19885
+ -------------------------------------------------------------
19886
+  (0.1ms) rollback transaction
19887
+  (0.0ms) begin transaction
19888
+ --------------------------------------------------------------
19889
+ MontageRailsTest: test_: .configure should accept server url.
19890
+ --------------------------------------------------------------
19891
+  (0.1ms) rollback transaction
19892
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:56 -0700
19893
+ Movie Load (18.2ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
19894
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:56 -0700
19895
+ Movie Load (12.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19896
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:56 -0700
19897
+ Movie Load (14.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19898
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:56 -0700
19899
+ Movie Load (12.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19900
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:56 -0700
19901
+ Movie Load (10.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19902
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:56 -0700
19903
+ Movie Load (12.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19904
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:56 -0700
19905
+ Movie Load (56.6ms) {:filter=>{:votes__gt=>5}}
19906
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:56 -0700
19907
+ Movie Load (13.4ms) {:filter=>{:title=>"Foo"}}
19908
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:56 -0700
19909
+ Movie Load (14.4ms) {:filter=>{:title=>"The Jerk"}}
19910
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:37:56 -0700
19911
+ Movie Load (60.3ms) {:filter=>{:votes__gt=>900000}}
19912
+ foo Load (0.0ms) bar
19913
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19914
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
19915
+  (0.1ms) select sqlite_version(*)
19916
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19917
+  (0.1ms) SELECT version FROM "schema_migrations"
19918
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
19919
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19920
+  (0.1ms) begin transaction
19921
+ ---------------------------------------------------------------------------------------
19922
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
19923
+ ---------------------------------------------------------------------------------------
19924
+  (0.1ms) rollback transaction
19925
+  (0.0ms) begin transaction
19926
+ ------------------------------------------------------------------------------------------------
19927
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
19928
+ ------------------------------------------------------------------------------------------------
19929
+  (0.0ms) rollback transaction
19930
+  (0.0ms) begin transaction
19931
+ --------------------------------------------------------------
19932
+ MontageRailsTest: test_: .configure should accept server url.
19933
+ --------------------------------------------------------------
19934
+  (0.0ms) rollback transaction
19935
+  (0.1ms) begin transaction
19936
+ ----------------------------------------------------------------------------------------------------
19937
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
19938
+ ----------------------------------------------------------------------------------------------------
19939
+  (0.1ms) rollback transaction
19940
+  (0.0ms) begin transaction
19941
+ --------------------------------------------------------------------------------------------
19942
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
19943
+ --------------------------------------------------------------------------------------------
19944
+  (0.1ms) rollback transaction
19945
+  (0.0ms) begin transaction
19946
+ ---------------------------------------------------------------------------------------------------------------
19947
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
19948
+ ---------------------------------------------------------------------------------------------------------------
19949
+  (0.0ms) rollback transaction
19950
+  (0.0ms) begin transaction
19951
+ -------------------------------------------------------------
19952
+ MontageRailsTest: test_: .configure should require a domain.
19953
+ -------------------------------------------------------------
19954
+  (0.0ms) rollback transaction
19955
+  (0.1ms) begin transaction
19956
+ --------------------------------------------------------------------------------------
19957
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
19958
+ --------------------------------------------------------------------------------------
19959
+  (0.1ms) rollback transaction
19960
+  (0.1ms) begin transaction
19961
+ ---------------------------------------------------------------------------------------
19962
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
19963
+ ---------------------------------------------------------------------------------------
19964
+  (0.0ms) rollback transaction
19965
+  (0.0ms) begin transaction
19966
+ -------------------------------------------------------------------------------------------------
19967
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
19968
+ -------------------------------------------------------------------------------------------------
19969
+  (0.0ms) rollback transaction
19970
+  (0.1ms) begin transaction
19971
+ -------------------------------------------------------------------------------------------
19972
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
19973
+ -------------------------------------------------------------------------------------------
19974
+  (0.1ms) rollback transaction
19975
+ foo Load [CACHE] (0.0ms) bar
19976
+ foo Load (0.0ms) bar
19977
+ foo Load (0.0ms) bar
19978
+ foo Load (0.1ms) bar
19979
+ foo Load (0.0ms) bar
19980
+ Movie Load (4.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19981
+ foo Load (0.0ms) bar
19982
+ Movie Load (0.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19983
+ Movie Load (0.7ms) {:filter=>{:votes__gt=>900000}}
19984
+ Movie Load (0.5ms) {:filter=>{:votes__gt=>5}}
19985
+ Movie Load (0.5ms) {:filter=>{:title=>"The Jerk"}}
19986
+ Movie Load (0.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19987
+ Movie Load (0.6ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
19988
+ Movie Load (0.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
19989
+ Movie Load (0.5ms) {:filter=>{:title=>"Foo"}}
19990
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19991
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
19992
+  (0.1ms) select sqlite_version(*)
19993
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19994
+  (0.1ms) SELECT version FROM "schema_migrations"
19995
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
19996
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19997
+  (0.1ms) begin transaction
19998
+ ----------------------------------------------------------------------------------------------------
19999
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
20000
+ ----------------------------------------------------------------------------------------------------
20001
+  (0.1ms) rollback transaction
20002
+  (0.0ms) begin transaction
20003
+ -------------------------------------------------------------------------------------------------
20004
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
20005
+ -------------------------------------------------------------------------------------------------
20006
+  (0.0ms) rollback transaction
20007
+  (0.0ms) begin transaction
20008
+ --------------------------------------------------------------------------------------------
20009
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
20010
+ --------------------------------------------------------------------------------------------
20011
+  (0.1ms) rollback transaction
20012
+  (0.1ms) begin transaction
20013
+ ---------------------------------------------------------------------------------------------------------------
20014
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
20015
+ ---------------------------------------------------------------------------------------------------------------
20016
+  (0.0ms) rollback transaction
20017
+  (0.0ms) begin transaction
20018
+ ------------------------------------------------------------------------------------------------
20019
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
20020
+ ------------------------------------------------------------------------------------------------
20021
+  (0.0ms) rollback transaction
20022
+  (0.0ms) begin transaction
20023
+ --------------------------------------------------------------------------------------
20024
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
20025
+ --------------------------------------------------------------------------------------
20026
+  (0.1ms) rollback transaction
20027
+  (0.1ms) begin transaction
20028
+ -------------------------------------------------------------
20029
+ MontageRailsTest: test_: .configure should require a domain.
20030
+ -------------------------------------------------------------
20031
+  (0.1ms) rollback transaction
20032
+  (0.0ms) begin transaction
20033
+ -------------------------------------------------------------------------------------------
20034
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
20035
+ -------------------------------------------------------------------------------------------
20036
+  (0.1ms) rollback transaction
20037
+  (0.1ms) begin transaction
20038
+ --------------------------------------------------------------
20039
+ MontageRailsTest: test_: .configure should accept server url.
20040
+ --------------------------------------------------------------
20041
+  (0.1ms) rollback transaction
20042
+  (0.1ms) begin transaction
20043
+ ---------------------------------------------------------------------------------------
20044
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
20045
+ ---------------------------------------------------------------------------------------
20046
+  (0.1ms) rollback transaction
20047
+  (0.1ms) begin transaction
20048
+ ---------------------------------------------------------------------------------------
20049
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
20050
+ ---------------------------------------------------------------------------------------
20051
+  (0.0ms) rollback transaction
20052
+ Movie Load (3.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20053
+ foo Load (0.0ms) bar
20054
+ Movie Load (0.5ms) {:filter=>{:votes__gt=>5}}
20055
+ Movie Load (0.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20056
+ Movie Load (0.4ms) {:filter=>{:title=>"Foo"}}
20057
+ Movie Load (0.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20058
+ Movie Load (0.5ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
20059
+ Movie Load (0.5ms) {:filter=>{:votes__gt=>900000}}
20060
+ Movie Load (0.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20061
+ Movie Load (0.4ms) {:filter=>{:title=>"The Jerk"}}
20062
+ foo Load (0.1ms) bar
20063
+ foo Load [CACHE] (0.0ms) bar
20064
+ foo Load (0.1ms) bar
20065
+ foo Load (0.1ms) bar
20066
+ foo Load (0.1ms) bar
20067
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20068
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
20069
+  (0.1ms) select sqlite_version(*)
20070
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20071
+  (0.1ms) SELECT version FROM "schema_migrations"
20072
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
20073
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20074
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:06 -0700
20075
+ Movie Load (76.6ms) {:filter=>{:votes__gt=>5}}
20076
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:06 -0700
20077
+ Movie Load (14.0ms) {:filter=>{:title=>"The Jerk"}}
20078
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:40:06 -0700
20079
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:06 -0700
20080
+ Movie Load (13.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20081
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:06 -0700
20082
+ Movie Load (9.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20083
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:06 -0700
20084
+ Movie Load (53.5ms) {:filter=>{:votes__gt=>900000}}
20085
+ foo Load (0.0ms) bar
20086
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:06 -0700
20087
+ Movie Load (13.5ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
20088
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:06 -0700
20089
+ Movie Load (14.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20090
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:06 -0700
20091
+ Movie Load (12.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20092
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:07 -0700
20093
+ Movie Load (12.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20094
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:07 -0700
20095
+ Movie Load (12.8ms) {:filter=>{:title=>"Foo"}}
20096
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:40:07 -0700
20097
+ Movie Create (13.7ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
20098
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:40:07 -0700
20099
+ Movie Update (7.7ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
20100
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-12 12:40:07 -0700
20101
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:40:07 -0700
20102
+ Actor Create (8.3ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
20103
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:40:07 -0700
20104
+ Actor Create (6.7ms) {:movie_id=>nil, :name=>"Mark Hamill"}
20105
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-12 12:40:07 -0700
20106
+ Actor Load (10.0ms) {:filter=>{:movie_id=>""}, :limit=>1}
20107
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:40:07 -0700
20108
+ Movie Create (13.0ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
20109
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:40:07 -0700
20110
+ Movie Update (7.5ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
20111
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:40:07 -0700
20112
+ Actor Create (8.4ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
20113
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:40:07 -0700
20114
+ Actor Create (7.8ms) {:movie_id=>nil, :name=>"Mark Hamill"}
20115
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:07 -0700
20116
+ MontageRails::BaseTest::TestClass Load (9.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20117
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:40:07 -0700
20118
+  (0.2ms) begin transaction
20119
+ ---------------------------------------------------------------------------------------
20120
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
20121
+ ---------------------------------------------------------------------------------------
20122
+  (0.1ms) rollback transaction
20123
+  (0.2ms) begin transaction
20124
+ --------------------------------------------------------------
20125
+ MontageRailsTest: test_: .configure should accept server url.
20126
+ --------------------------------------------------------------
20127
+  (0.1ms) rollback transaction
20128
+  (0.0ms) begin transaction
20129
+ --------------------------------------------------------------------------------------------
20130
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
20131
+ --------------------------------------------------------------------------------------------
20132
+  (0.1ms) rollback transaction
20133
+  (0.1ms) begin transaction
20134
+ ---------------------------------------------------------------------------------------
20135
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
20136
+ ---------------------------------------------------------------------------------------
20137
+  (0.1ms) rollback transaction
20138
+  (0.1ms) begin transaction
20139
+ -------------------------------------------------------------
20140
+ MontageRailsTest: test_: .configure should require a domain.
20141
+ -------------------------------------------------------------
20142
+  (0.1ms) rollback transaction
20143
+  (0.0ms) begin transaction
20144
+ -------------------------------------------------------------------------------------------
20145
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
20146
+ -------------------------------------------------------------------------------------------
20147
+  (0.0ms) rollback transaction
20148
+  (0.0ms) begin transaction
20149
+ ------------------------------------------------------------------------------------------------
20150
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
20151
+ ------------------------------------------------------------------------------------------------
20152
+  (0.1ms) rollback transaction
20153
+  (0.0ms) begin transaction
20154
+ ---------------------------------------------------------------------------------------------------------------
20155
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
20156
+ ---------------------------------------------------------------------------------------------------------------
20157
+  (0.1ms) rollback transaction
20158
+  (0.0ms) begin transaction
20159
+ ----------------------------------------------------------------------------------------------------
20160
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
20161
+ ----------------------------------------------------------------------------------------------------
20162
+  (0.0ms) rollback transaction
20163
+  (0.2ms) begin transaction
20164
+ -------------------------------------------------------------------------------------------------
20165
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
20166
+ -------------------------------------------------------------------------------------------------
20167
+  (0.0ms) rollback transaction
20168
+  (0.1ms) begin transaction
20169
+ --------------------------------------------------------------------------------------
20170
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
20171
+ --------------------------------------------------------------------------------------
20172
+  (0.0ms) rollback transaction
20173
+ foo Load [CACHE] (0.1ms) bar
20174
+ foo Load (0.1ms) bar
20175
+ foo Load (0.0ms) bar
20176
+ foo Load (0.1ms) bar
20177
+ foo Load (0.1ms) bar
20178
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20179
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
20180
+  (0.1ms) select sqlite_version(*)
20181
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20182
+  (0.1ms) SELECT version FROM "schema_migrations"
20183
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
20184
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20185
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:51 -0700
20186
+ Movie Load (28.1ms) {:filter=>{:title=>"Foo"}}
20187
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:51 -0700
20188
+ Movie Load (55.5ms) {:filter=>{:votes__gt=>5}}
20189
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:51 -0700
20190
+ Movie Load (15.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20191
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:51 -0700
20192
+ Movie Load (66.6ms) {:filter=>{:votes__gt=>900000}}
20193
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:51 -0700
20194
+ Movie Load (14.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20195
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:51 -0700
20196
+ Movie Load (16.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20197
+ foo Load (0.0ms) bar
20198
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:51 -0700
20199
+ Movie Load (15.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20200
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:51 -0700
20201
+ Movie Load (12.4ms) {:filter=>{:title=>"The Jerk"}}
20202
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:40:51 -0700
20203
+ Movie Load (13.2ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
20204
+ foo Load (0.1ms) bar
20205
+ foo Load (0.0ms) bar
20206
+ foo Load (0.1ms) bar
20207
+ foo Load [CACHE] (0.0ms) bar
20208
+ foo Load (0.0ms) bar
20209
+  (0.1ms) begin transaction
20210
+ -------------------------------------------------------------------------------------------------
20211
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
20212
+ -------------------------------------------------------------------------------------------------
20213
+  (0.0ms) rollback transaction
20214
+  (0.2ms) begin transaction
20215
+ ----------------------------------------------------------------------------------------------------
20216
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
20217
+ ----------------------------------------------------------------------------------------------------
20218
+  (0.1ms) rollback transaction
20219
+  (0.0ms) begin transaction
20220
+ ------------------------------------------------------------------------------------------------
20221
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
20222
+ ------------------------------------------------------------------------------------------------
20223
+  (0.1ms) rollback transaction
20224
+  (0.1ms) begin transaction
20225
+ ---------------------------------------------------------------------------------------
20226
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
20227
+ ---------------------------------------------------------------------------------------
20228
+  (0.0ms) rollback transaction
20229
+  (0.1ms) begin transaction
20230
+ --------------------------------------------------------------------------------------
20231
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
20232
+ --------------------------------------------------------------------------------------
20233
+  (0.1ms) rollback transaction
20234
+  (0.1ms) begin transaction
20235
+ ---------------------------------------------------------------------------------------
20236
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
20237
+ ---------------------------------------------------------------------------------------
20238
+  (0.1ms) rollback transaction
20239
+  (0.0ms) begin transaction
20240
+ -------------------------------------------------------------
20241
+ MontageRailsTest: test_: .configure should require a domain.
20242
+ -------------------------------------------------------------
20243
+  (0.1ms) rollback transaction
20244
+  (0.1ms) begin transaction
20245
+ --------------------------------------------------------------------------------------------
20246
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
20247
+ --------------------------------------------------------------------------------------------
20248
+  (0.1ms) rollback transaction
20249
+  (0.0ms) begin transaction
20250
+ -------------------------------------------------------------------------------------------
20251
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
20252
+ -------------------------------------------------------------------------------------------
20253
+  (0.0ms) rollback transaction
20254
+  (0.1ms) begin transaction
20255
+ ---------------------------------------------------------------------------------------------------------------
20256
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
20257
+ ---------------------------------------------------------------------------------------------------------------
20258
+  (0.1ms) rollback transaction
20259
+  (0.1ms) begin transaction
20260
+ --------------------------------------------------------------
20261
+ MontageRailsTest: test_: .configure should accept server url.
20262
+ --------------------------------------------------------------
20263
+  (0.0ms) rollback transaction
20264
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20265
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
20266
+  (0.1ms) select sqlite_version(*)
20267
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20268
+  (0.1ms) SELECT version FROM "schema_migrations"
20269
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
20270
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20271
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20272
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20273
+ Movie Create (13.8ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
20274
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20275
+ Movie Update (7.5ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
20276
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20277
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20278
+ Actor Create (8.4ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
20279
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20280
+ Actor Create (7.3ms) {:movie_id=>nil, :name=>"Mark Hamill"}
20281
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20282
+ Actor Load (9.6ms) {:filter=>{:movie_id=>""}, :limit=>1}
20283
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20284
+ Movie Create (12.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
20285
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20286
+ Movie Update (8.2ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
20287
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20288
+ Actor Create (7.8ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
20289
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20290
+ Actor Create (7.1ms) {:movie_id=>nil, :name=>"Mark Hamill"}
20291
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20292
+ MontageRails::BaseTest::TestClass Load (9.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20293
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20294
+  (0.1ms) begin transaction
20295
+ -------------------------------------------------------------
20296
+ MontageRailsTest: test_: .configure should require a domain.
20297
+ -------------------------------------------------------------
20298
+  (0.1ms) rollback transaction
20299
+  (0.2ms) begin transaction
20300
+ ---------------------------------------------------------------------------------------------------------------
20301
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
20302
+ ---------------------------------------------------------------------------------------------------------------
20303
+  (0.1ms) rollback transaction
20304
+  (0.0ms) begin transaction
20305
+ -------------------------------------------------------------------------------------------
20306
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
20307
+ -------------------------------------------------------------------------------------------
20308
+  (0.1ms) rollback transaction
20309
+  (0.0ms) begin transaction
20310
+ ---------------------------------------------------------------------------------------
20311
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
20312
+ ---------------------------------------------------------------------------------------
20313
+  (0.1ms) rollback transaction
20314
+  (0.0ms) begin transaction
20315
+ --------------------------------------------------------------------------------------------
20316
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
20317
+ --------------------------------------------------------------------------------------------
20318
+  (0.1ms) rollback transaction
20319
+  (0.1ms) begin transaction
20320
+ --------------------------------------------------------------------------------------
20321
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
20322
+ --------------------------------------------------------------------------------------
20323
+  (0.1ms) rollback transaction
20324
+  (0.1ms) begin transaction
20325
+ --------------------------------------------------------------
20326
+ MontageRailsTest: test_: .configure should accept server url.
20327
+ --------------------------------------------------------------
20328
+  (0.1ms) rollback transaction
20329
+  (0.0ms) begin transaction
20330
+ ---------------------------------------------------------------------------------------
20331
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
20332
+ ---------------------------------------------------------------------------------------
20333
+  (0.1ms) rollback transaction
20334
+  (0.0ms) begin transaction
20335
+ -------------------------------------------------------------------------------------------------
20336
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
20337
+ -------------------------------------------------------------------------------------------------
20338
+  (0.0ms) rollback transaction
20339
+  (0.1ms) begin transaction
20340
+ ------------------------------------------------------------------------------------------------
20341
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
20342
+ ------------------------------------------------------------------------------------------------
20343
+  (0.0ms) rollback transaction
20344
+  (0.0ms) begin transaction
20345
+ ----------------------------------------------------------------------------------------------------
20346
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
20347
+ ----------------------------------------------------------------------------------------------------
20348
+  (0.0ms) rollback transaction
20349
+ foo Load (0.1ms) bar
20350
+ foo Load [CACHE] (0.0ms) bar
20351
+ foo Load (0.0ms) bar
20352
+ foo Load (0.0ms) bar
20353
+ foo Load (0.1ms) bar
20354
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20355
+ Movie Load (13.7ms) {:filter=>{:title=>"Foo"}}
20356
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20357
+ Movie Load (62.4ms) {:filter=>{:votes__gt=>5}}
20358
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20359
+ Movie Load (56.2ms) {:filter=>{:votes__gt=>900000}}
20360
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20361
+ Movie Load (13.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20362
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20363
+ Movie Load (13.6ms) {:filter=>{:title=>"The Jerk"}}
20364
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20365
+ Movie Load (20.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20366
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20367
+ Movie Load (15.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20368
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20369
+ Movie Load (12.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20370
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20371
+ Movie Load (10.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20372
+ foo Load (0.1ms) bar
20373
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:42:07 -0700
20374
+ Movie Load (13.2ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
20375
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20376
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
20377
+  (0.1ms) select sqlite_version(*)
20378
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20379
+  (0.1ms) SELECT version FROM "schema_migrations"
20380
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
20381
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20382
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:43:16 -0700
20383
+ Movie Load (25.7ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
20384
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:43:16 -0700
20385
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20386
+ Movie Load (54.8ms) {:filter=>{:votes__gt=>900000}}
20387
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20388
+ Movie Load (13.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20389
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20390
+ Movie Load (14.0ms) {:filter=>{:title=>"The Jerk"}}
20391
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20392
+ Movie Load (14.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20393
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20394
+ Movie Load (12.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20395
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20396
+ Movie Load (13.8ms) {:filter=>{:title=>"Foo"}}
20397
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20398
+ Movie Load (12.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20399
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20400
+ Movie Load (8.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20401
+ foo Load (0.0ms) bar
20402
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20403
+ Movie Load (53.0ms) {:filter=>{:votes__gt=>5}}
20404
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20405
+ Movie Create (13.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
20406
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20407
+ Movie Update (8.3ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
20408
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20409
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20410
+ Actor Create (7.8ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
20411
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20412
+ Actor Create (8.1ms) {:movie_id=>nil, :name=>"Mark Hamill"}
20413
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20414
+ Actor Load (8.7ms) {:filter=>{:movie_id=>""}, :limit=>1}
20415
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20416
+ Movie Create (14.0ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
20417
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20418
+ Movie Update (7.5ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
20419
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20420
+ Actor Create (7.8ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
20421
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20422
+ Actor Create (7.3ms) {:movie_id=>nil, :name=>"Mark Hamill"}
20423
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20424
+ MontageRails::BaseTest::TestClass Load (8.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20425
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:43:17 -0700
20426
+ foo Load (0.1ms) bar
20427
+ foo Load (0.1ms) bar
20428
+ foo Load (0.1ms) bar
20429
+ foo Load [CACHE] (0.0ms) bar
20430
+ foo Load (0.1ms) bar
20431
+  (0.1ms) begin transaction
20432
+ --------------------------------------------------------------
20433
+ MontageRailsTest: test_: .configure should accept server url.
20434
+ --------------------------------------------------------------
20435
+  (0.1ms) rollback transaction
20436
+  (0.2ms) begin transaction
20437
+ ---------------------------------------------------------------------------------------
20438
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
20439
+ ---------------------------------------------------------------------------------------
20440
+  (0.1ms) rollback transaction
20441
+  (0.1ms) begin transaction
20442
+ -------------------------------------------------------------------------------------------------
20443
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
20444
+ -------------------------------------------------------------------------------------------------
20445
+  (0.0ms) rollback transaction
20446
+  (0.1ms) begin transaction
20447
+ --------------------------------------------------------------------------------------------
20448
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
20449
+ --------------------------------------------------------------------------------------------
20450
+  (0.1ms) rollback transaction
20451
+  (0.0ms) begin transaction
20452
+ ---------------------------------------------------------------------------------------------------------------
20453
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
20454
+ ---------------------------------------------------------------------------------------------------------------
20455
+  (0.1ms) rollback transaction
20456
+  (0.0ms) begin transaction
20457
+ ------------------------------------------------------------------------------------------------
20458
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
20459
+ ------------------------------------------------------------------------------------------------
20460
+  (0.0ms) rollback transaction
20461
+  (0.1ms) begin transaction
20462
+ ---------------------------------------------------------------------------------------
20463
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
20464
+ ---------------------------------------------------------------------------------------
20465
+  (0.0ms) rollback transaction
20466
+  (0.1ms) begin transaction
20467
+ -------------------------------------------------------------------------------------------
20468
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
20469
+ -------------------------------------------------------------------------------------------
20470
+  (0.0ms) rollback transaction
20471
+  (0.0ms) begin transaction
20472
+ ----------------------------------------------------------------------------------------------------
20473
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
20474
+ ----------------------------------------------------------------------------------------------------
20475
+  (0.0ms) rollback transaction
20476
+  (0.1ms) begin transaction
20477
+ -------------------------------------------------------------
20478
+ MontageRailsTest: test_: .configure should require a domain.
20479
+ -------------------------------------------------------------
20480
+  (0.1ms) rollback transaction
20481
+  (0.1ms) begin transaction
20482
+ --------------------------------------------------------------------------------------
20483
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
20484
+ --------------------------------------------------------------------------------------
20485
+  (0.1ms) rollback transaction
20486
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20487
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
20488
+  (0.1ms) select sqlite_version(*)
20489
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20490
+  (0.1ms) SELECT version FROM "schema_migrations"
20491
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
20492
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20493
+  (0.1ms) begin transaction
20494
+ ----------------------------------------------------------------------------------------------------
20495
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
20496
+ ----------------------------------------------------------------------------------------------------
20497
+  (0.1ms) rollback transaction
20498
+  (0.0ms) begin transaction
20499
+ ---------------------------------------------------------------------------------------
20500
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
20501
+ ---------------------------------------------------------------------------------------
20502
+  (0.1ms) rollback transaction
20503
+  (0.0ms) begin transaction
20504
+ ---------------------------------------------------------------------------------------
20505
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
20506
+ ---------------------------------------------------------------------------------------
20507
+  (0.1ms) rollback transaction
20508
+  (0.0ms) begin transaction
20509
+ ---------------------------------------------------------------------------------------------------------------
20510
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
20511
+ ---------------------------------------------------------------------------------------------------------------
20512
+  (0.0ms) rollback transaction
20513
+  (0.0ms) begin transaction
20514
+ -------------------------------------------------------------
20515
+ MontageRailsTest: test_: .configure should require a domain.
20516
+ -------------------------------------------------------------
20517
+  (0.0ms) rollback transaction
20518
+  (0.1ms) begin transaction
20519
+ --------------------------------------------------------------------------------------------
20520
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
20521
+ --------------------------------------------------------------------------------------------
20522
+  (0.0ms) rollback transaction
20523
+  (0.1ms) begin transaction
20524
+ ------------------------------------------------------------------------------------------------
20525
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
20526
+ ------------------------------------------------------------------------------------------------
20527
+  (0.1ms) rollback transaction
20528
+  (0.0ms) begin transaction
20529
+ --------------------------------------------------------------
20530
+ MontageRailsTest: test_: .configure should accept server url.
20531
+ --------------------------------------------------------------
20532
+  (0.1ms) rollback transaction
20533
+  (0.0ms) begin transaction
20534
+ -------------------------------------------------------------------------------------------
20535
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
20536
+ -------------------------------------------------------------------------------------------
20537
+  (0.0ms) rollback transaction
20538
+  (0.1ms) begin transaction
20539
+ --------------------------------------------------------------------------------------
20540
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
20541
+ --------------------------------------------------------------------------------------
20542
+  (0.0ms) rollback transaction
20543
+  (0.0ms) begin transaction
20544
+ -------------------------------------------------------------------------------------------------
20545
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
20546
+ -------------------------------------------------------------------------------------------------
20547
+  (0.0ms) rollback transaction
20548
+ foo Load (0.1ms) bar
20549
+ foo Load (0.1ms) bar
20550
+ foo Load [CACHE] (0.0ms) bar
20551
+ foo Load (0.0ms) bar
20552
+ foo Load (0.1ms) bar
20553
+ Movie Load (4.0ms) {:filter=>{:title=>"The Jerk"}}
20554
+ Movie Load (0.5ms) {:filter=>{:votes__gt=>5}}
20555
+ Movie Load (0.6ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
20556
+ Movie Load (0.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20557
+ Movie Load (0.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20558
+ Movie Load (0.5ms) {:filter=>{:votes__gt=>900000}}
20559
+ Movie Load (0.5ms) {:filter=>{:title=>"Foo"}}
20560
+ Movie Load (0.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20561
+ foo Load (0.0ms) bar
20562
+ Movie Load (0.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20563
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20564
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
20565
+  (0.1ms) select sqlite_version(*)
20566
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20567
+  (0.1ms) SELECT version FROM "schema_migrations"
20568
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
20569
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20570
+  (0.1ms) begin transaction
20571
+ ---------------------------------------------------------------------------------------
20572
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
20573
+ ---------------------------------------------------------------------------------------
20574
+  (0.1ms) rollback transaction
20575
+  (0.1ms) begin transaction
20576
+ ----------------------------------------------------------------------------------------------------
20577
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
20578
+ ----------------------------------------------------------------------------------------------------
20579
+  (0.1ms) rollback transaction
20580
+  (0.0ms) begin transaction
20581
+ -------------------------------------------------------------------------------------------------
20582
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
20583
+ -------------------------------------------------------------------------------------------------
20584
+  (0.1ms) rollback transaction
20585
+  (0.0ms) begin transaction
20586
+ ---------------------------------------------------------------------------------------
20587
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
20588
+ ---------------------------------------------------------------------------------------
20589
+  (0.1ms) rollback transaction
20590
+  (0.0ms) begin transaction
20591
+ -------------------------------------------------------------
20592
+ MontageRailsTest: test_: .configure should require a domain.
20593
+ -------------------------------------------------------------
20594
+  (0.1ms) rollback transaction
20595
+  (0.0ms) begin transaction
20596
+ --------------------------------------------------------------
20597
+ MontageRailsTest: test_: .configure should accept server url.
20598
+ --------------------------------------------------------------
20599
+  (0.1ms) rollback transaction
20600
+  (0.1ms) begin transaction
20601
+ ------------------------------------------------------------------------------------------------
20602
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
20603
+ ------------------------------------------------------------------------------------------------
20604
+  (0.1ms) rollback transaction
20605
+  (0.1ms) begin transaction
20606
+ --------------------------------------------------------------------------------------
20607
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
20608
+ --------------------------------------------------------------------------------------
20609
+  (0.1ms) rollback transaction
20610
+  (0.1ms) begin transaction
20611
+ ---------------------------------------------------------------------------------------------------------------
20612
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
20613
+ ---------------------------------------------------------------------------------------------------------------
20614
+  (0.1ms) rollback transaction
20615
+  (0.0ms) begin transaction
20616
+ --------------------------------------------------------------------------------------------
20617
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
20618
+ --------------------------------------------------------------------------------------------
20619
+  (0.1ms) rollback transaction
20620
+  (0.1ms) begin transaction
20621
+ -------------------------------------------------------------------------------------------
20622
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
20623
+ -------------------------------------------------------------------------------------------
20624
+  (0.1ms) rollback transaction
20625
+ Movie Load (21.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20626
+ Movie Load (18.4ms) {:filter=>{:votes__gt=>900000}}
20627
+ Movie Load (19.8ms) {:filter=>{:title=>"Foo"}}
20628
+ Movie Load (19.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20629
+ Movie Load (25.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20630
+ Movie Load (21.8ms) {:filter=>{:title=>"The Jerk"}}
20631
+ Movie Load (19.8ms) {:filter=>{:votes__gt=>5}}
20632
+ Movie Load (23.5ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
20633
+ Movie Load (20.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20634
+ foo Load (0.0ms) bar
20635
+ foo Load (0.1ms) bar
20636
+ foo Load [CACHE] (0.0ms) bar
20637
+ foo Load (0.1ms) bar
20638
+ foo Load (0.0ms) bar
20639
+ foo Load (0.1ms) bar
20640
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20641
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
20642
+  (0.1ms) select sqlite_version(*)
20643
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20644
+  (0.1ms) SELECT version FROM "schema_migrations"
20645
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
20646
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20647
+ foo Load (0.1ms) bar
20648
+ foo Load (0.0ms) bar
20649
+ foo Load [CACHE] (0.0ms) bar
20650
+ foo Load (0.1ms) bar
20651
+ foo Load (0.0ms) bar
20652
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20653
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20654
+ Movie Create (15.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
20655
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20656
+ Movie Update (7.7ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
20657
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20658
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20659
+ Actor Create (8.2ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
20660
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20661
+ Actor Create (7.9ms) {:movie_id=>nil, :name=>"Mark Hamill"}
20662
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20663
+ Actor Load (11.9ms) {:filter=>{:movie_id=>""}, :limit=>1}
20664
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20665
+ Movie Create (12.4ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
20666
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20667
+ Movie Update (7.5ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
20668
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20669
+ Actor Create (7.4ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
20670
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20671
+ Actor Create (9.1ms) {:movie_id=>nil, :name=>"Mark Hamill"}
20672
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20673
+ MontageRails::BaseTest::TestClass Load (8.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20674
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20675
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20676
+ Movie Load (15.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20677
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20678
+ Movie Load (15.4ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
20679
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20680
+ Movie Load (65.4ms) {:filter=>{:votes__gt=>5}}
20681
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20682
+ Movie Load (13.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20683
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20684
+ Movie Load (12.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20685
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20686
+ Movie Load (15.3ms) {:filter=>{:title=>"Foo"}}
20687
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20688
+ Movie Load (58.0ms) {:filter=>{:votes__gt=>900000}}
20689
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20690
+ Movie Load (14.3ms) {:filter=>{:title=>"The Jerk"}}
20691
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20692
+ Movie Load (15.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20693
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:48 -0700
20694
+ Movie Load (8.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20695
+ foo Load (0.0ms) bar
20696
+  (0.1ms) begin transaction
20697
+ ----------------------------------------------------------------------------------------------------
20698
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
20699
+ ----------------------------------------------------------------------------------------------------
20700
+  (0.1ms) rollback transaction
20701
+  (0.2ms) begin transaction
20702
+ ------------------------------------------------------------------------------------------------
20703
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
20704
+ ------------------------------------------------------------------------------------------------
20705
+  (0.0ms) rollback transaction
20706
+  (0.0ms) begin transaction
20707
+ ---------------------------------------------------------------------------------------
20708
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
20709
+ ---------------------------------------------------------------------------------------
20710
+  (0.0ms) rollback transaction
20711
+  (0.0ms) begin transaction
20712
+ --------------------------------------------------------------------------------------------
20713
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
20714
+ --------------------------------------------------------------------------------------------
20715
+  (0.1ms) rollback transaction
20716
+  (0.0ms) begin transaction
20717
+ ---------------------------------------------------------------------------------------
20718
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
20719
+ ---------------------------------------------------------------------------------------
20720
+  (0.2ms) rollback transaction
20721
+  (0.1ms) begin transaction
20722
+ -------------------------------------------------------------
20723
+ MontageRailsTest: test_: .configure should require a domain.
20724
+ -------------------------------------------------------------
20725
+  (0.0ms) rollback transaction
20726
+  (0.1ms) begin transaction
20727
+ -------------------------------------------------------------------------------------------------
20728
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
20729
+ -------------------------------------------------------------------------------------------------
20730
+  (0.1ms) rollback transaction
20731
+  (0.0ms) begin transaction
20732
+ ---------------------------------------------------------------------------------------------------------------
20733
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
20734
+ ---------------------------------------------------------------------------------------------------------------
20735
+  (0.1ms) rollback transaction
20736
+  (0.1ms) begin transaction
20737
+ --------------------------------------------------------------
20738
+ MontageRailsTest: test_: .configure should accept server url.
20739
+ --------------------------------------------------------------
20740
+  (0.1ms) rollback transaction
20741
+  (0.0ms) begin transaction
20742
+ --------------------------------------------------------------------------------------
20743
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
20744
+ --------------------------------------------------------------------------------------
20745
+  (0.1ms) rollback transaction
20746
+  (0.0ms) begin transaction
20747
+ -------------------------------------------------------------------------------------------
20748
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
20749
+ -------------------------------------------------------------------------------------------
20750
+  (0.1ms) rollback transaction
20751
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20752
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
20753
+  (0.1ms) select sqlite_version(*)
20754
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20755
+  (0.1ms) SELECT version FROM "schema_migrations"
20756
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
20757
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20758
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20759
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20760
+ Movie Create (14.0ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
20761
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20762
+ Movie Update (7.8ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
20763
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20764
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20765
+ Actor Create (8.6ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
20766
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20767
+ Actor Create (7.6ms) {:movie_id=>nil, :name=>"Mark Hamill"}
20768
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20769
+ Actor Load (8.8ms) {:filter=>{:movie_id=>""}, :limit=>1}
20770
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20771
+ Movie Create (14.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
20772
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20773
+ Movie Update (8.0ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
20774
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20775
+ Actor Create (9.5ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
20776
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20777
+ Actor Create (6.8ms) {:movie_id=>nil, :name=>"Mark Hamill"}
20778
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20779
+ MontageRails::BaseTest::TestClass Load (8.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20780
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20781
+  (0.1ms) begin transaction
20782
+ -------------------------------------------------------------
20783
+ MontageRailsTest: test_: .configure should require a domain.
20784
+ -------------------------------------------------------------
20785
+  (0.1ms) rollback transaction
20786
+  (0.2ms) begin transaction
20787
+ ---------------------------------------------------------------------------------------
20788
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
20789
+ ---------------------------------------------------------------------------------------
20790
+  (0.1ms) rollback transaction
20791
+  (0.0ms) begin transaction
20792
+ ---------------------------------------------------------------------------------------------------------------
20793
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
20794
+ ---------------------------------------------------------------------------------------------------------------
20795
+  (0.1ms) rollback transaction
20796
+  (0.0ms) begin transaction
20797
+ --------------------------------------------------------------
20798
+ MontageRailsTest: test_: .configure should accept server url.
20799
+ --------------------------------------------------------------
20800
+  (0.1ms) rollback transaction
20801
+  (0.0ms) begin transaction
20802
+ --------------------------------------------------------------------------------------
20803
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
20804
+ --------------------------------------------------------------------------------------
20805
+  (0.0ms) rollback transaction
20806
+  (0.1ms) begin transaction
20807
+ ------------------------------------------------------------------------------------------------
20808
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
20809
+ ------------------------------------------------------------------------------------------------
20810
+  (0.0ms) rollback transaction
20811
+  (0.0ms) begin transaction
20812
+ --------------------------------------------------------------------------------------------
20813
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
20814
+ --------------------------------------------------------------------------------------------
20815
+  (0.1ms) rollback transaction
20816
+  (0.0ms) begin transaction
20817
+ ----------------------------------------------------------------------------------------------------
20818
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
20819
+ ----------------------------------------------------------------------------------------------------
20820
+  (0.1ms) rollback transaction
20821
+  (0.1ms) begin transaction
20822
+ ---------------------------------------------------------------------------------------
20823
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
20824
+ ---------------------------------------------------------------------------------------
20825
+  (0.1ms) rollback transaction
20826
+  (0.1ms) begin transaction
20827
+ -------------------------------------------------------------------------------------------
20828
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
20829
+ -------------------------------------------------------------------------------------------
20830
+  (0.1ms) rollback transaction
20831
+  (0.1ms) begin transaction
20832
+ -------------------------------------------------------------------------------------------------
20833
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
20834
+ -------------------------------------------------------------------------------------------------
20835
+  (0.0ms) rollback transaction
20836
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20837
+ Movie Load (13.9ms) {:filter=>{:title=>"The Jerk"}}
20838
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20839
+ Movie Load (14.0ms) {:filter=>{:title=>"Foo"}}
20840
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20841
+ Movie Load (16.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20842
+ foo Load (0.0ms) bar
20843
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20844
+ Movie Load (13.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20845
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20846
+ Movie Load (14.3ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
20847
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20848
+ Movie Load (14.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20849
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20850
+ Movie Load (8.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20851
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20852
+ Movie Load (63.1ms) {:filter=>{:votes__gt=>5}}
20853
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20854
+ Movie Load (54.4ms) {:filter=>{:votes__gt=>900000}}
20855
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:45:58 -0700
20856
+ Movie Load (15.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20857
+ foo Load (0.1ms) bar
20858
+ foo Load (0.1ms) bar
20859
+ foo Load (0.0ms) bar
20860
+ foo Load (0.0ms) bar
20861
+ foo Load [CACHE] (0.0ms) bar
20862
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20863
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
20864
+  (0.0ms) select sqlite_version(*)
20865
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20866
+  (0.1ms) SELECT version FROM "schema_migrations"
20867
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
20868
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20869
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20870
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20871
+ Movie Create (17.4ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
20872
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20873
+ Movie Update (7.4ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
20874
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20875
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20876
+ Actor Create (9.0ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
20877
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20878
+ Actor Create (7.0ms) {:movie_id=>nil, :name=>"Mark Hamill"}
20879
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20880
+ Actor Load (8.8ms) {:filter=>{:movie_id=>""}, :limit=>1}
20881
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20882
+ Movie Create (15.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
20883
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20884
+ Movie Update (7.5ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
20885
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20886
+ Actor Create (8.7ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
20887
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20888
+ Actor Create (6.8ms) {:movie_id=>nil, :name=>"Mark Hamill"}
20889
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20890
+ MontageRails::BaseTest::TestClass Load (9.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20891
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20892
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20893
+ Movie Load (14.8ms) {:filter=>{:title=>"Foo"}}
20894
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20895
+ Movie Load (13.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20896
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20897
+ Movie Load (11.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20898
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20899
+ Movie Load (13.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20900
+ foo Load (0.0ms) bar
20901
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:46:05 -0700
20902
+ Movie Load (70.0ms) {:filter=>{:votes__gt=>5}}
20903
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:46:06 -0700
20904
+ Movie Load (13.9ms) {:filter=>{:title=>"The Jerk"}}
20905
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:46:06 -0700
20906
+ Movie Load (56.4ms) {:filter=>{:votes__gt=>900000}}
20907
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:46:06 -0700
20908
+ Movie Load (13.6ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
20909
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:46:06 -0700
20910
+ Movie Load (18.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20911
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:46:06 -0700
20912
+ Movie Load (14.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
20913
+ foo Load [CACHE] (0.0ms) bar
20914
+ foo Load (0.1ms) bar
20915
+ foo Load (0.0ms) bar
20916
+ foo Load (0.1ms) bar
20917
+ foo Load (0.0ms) bar
20918
+  (0.1ms) begin transaction
20919
+ --------------------------------------------------------------------------------------------
20920
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
20921
+ --------------------------------------------------------------------------------------------
20922
+  (0.1ms) rollback transaction
20923
+  (0.2ms) begin transaction
20924
+ --------------------------------------------------------------------------------------
20925
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
20926
+ --------------------------------------------------------------------------------------
20927
+  (0.1ms) rollback transaction
20928
+  (0.1ms) begin transaction
20929
+ ------------------------------------------------------------------------------------------------
20930
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
20931
+ ------------------------------------------------------------------------------------------------
20932
+  (0.0ms) rollback transaction
20933
+  (0.0ms) begin transaction
20934
+ -------------------------------------------------------------------------------------------
20935
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
20936
+ -------------------------------------------------------------------------------------------
20937
+  (0.0ms) rollback transaction
20938
+  (0.1ms) begin transaction
20939
+ ---------------------------------------------------------------------------------------
20940
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
20941
+ ---------------------------------------------------------------------------------------
20942
+  (0.1ms) rollback transaction
20943
+  (0.0ms) begin transaction
20944
+ ---------------------------------------------------------------------------------------
20945
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
20946
+ ---------------------------------------------------------------------------------------
20947
+  (0.0ms) rollback transaction
20948
+  (0.1ms) begin transaction
20949
+ --------------------------------------------------------------
20950
+ MontageRailsTest: test_: .configure should accept server url.
20951
+ --------------------------------------------------------------
20952
+  (0.1ms) rollback transaction
20953
+  (0.0ms) begin transaction
20954
+ ---------------------------------------------------------------------------------------------------------------
20955
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
20956
+ ---------------------------------------------------------------------------------------------------------------
20957
+  (0.1ms) rollback transaction
20958
+  (0.0ms) begin transaction
20959
+ -------------------------------------------------------------------------------------------------
20960
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
20961
+ -------------------------------------------------------------------------------------------------
20962
+  (0.0ms) rollback transaction
20963
+  (0.1ms) begin transaction
20964
+ -------------------------------------------------------------
20965
+ MontageRailsTest: test_: .configure should require a domain.
20966
+ -------------------------------------------------------------
20967
+  (0.1ms) rollback transaction
20968
+  (0.1ms) begin transaction
20969
+ ----------------------------------------------------------------------------------------------------
20970
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
20971
+ ----------------------------------------------------------------------------------------------------
20972
+  (0.1ms) rollback transaction
20973
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20974
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
20975
+  (0.1ms) select sqlite_version(*)
20976
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20977
+  (0.1ms) SELECT version FROM "schema_migrations"
20978
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
20979
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20980
+  (0.1ms) begin transaction
20981
+ -------------------------------------------------------------
20982
+ MontageRailsTest: test_: .configure should require a domain.
20983
+ -------------------------------------------------------------
20984
+  (0.1ms) rollback transaction
20985
+  (0.0ms) begin transaction
20986
+ ---------------------------------------------------------------------------------------------------------------
20987
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
20988
+ ---------------------------------------------------------------------------------------------------------------
20989
+  (0.1ms) rollback transaction
20990
+  (0.1ms) begin transaction
20991
+ -------------------------------------------------------------------------------------------
20992
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
20993
+ -------------------------------------------------------------------------------------------
20994
+  (0.1ms) rollback transaction
20995
+  (0.0ms) begin transaction
20996
+ --------------------------------------------------------------
20997
+ MontageRailsTest: test_: .configure should accept server url.
20998
+ --------------------------------------------------------------
20999
+  (0.0ms) rollback transaction
21000
+  (0.0ms) begin transaction
21001
+ ------------------------------------------------------------------------------------------------
21002
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
21003
+ ------------------------------------------------------------------------------------------------
21004
+  (0.0ms) rollback transaction
21005
+  (0.0ms) begin transaction
21006
+ --------------------------------------------------------------------------------------------
21007
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
21008
+ --------------------------------------------------------------------------------------------
21009
+  (0.0ms) rollback transaction
21010
+  (0.0ms) begin transaction
21011
+ ----------------------------------------------------------------------------------------------------
21012
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
21013
+ ----------------------------------------------------------------------------------------------------
21014
+  (0.1ms) rollback transaction
21015
+  (0.5ms) begin transaction
21016
+ -------------------------------------------------------------------------------------------------
21017
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
21018
+ -------------------------------------------------------------------------------------------------
21019
+  (0.0ms) rollback transaction
21020
+  (0.0ms) begin transaction
21021
+ ---------------------------------------------------------------------------------------
21022
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
21023
+ ---------------------------------------------------------------------------------------
21024
+  (0.0ms) rollback transaction
21025
+  (0.0ms) begin transaction
21026
+ ---------------------------------------------------------------------------------------
21027
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
21028
+ ---------------------------------------------------------------------------------------
21029
+  (0.0ms) rollback transaction
21030
+  (0.1ms) begin transaction
21031
+ --------------------------------------------------------------------------------------
21032
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
21033
+ --------------------------------------------------------------------------------------
21034
+  (0.1ms) rollback transaction
21035
+ Movie Load (13.7ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
21036
+ Movie Load (11.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21037
+ Movie Load (5.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21038
+ Movie Load (12.0ms) {:filter=>{:title=>"Foo"}}
21039
+ Movie Load (11.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21040
+ Movie Load (6.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21041
+ Movie Load (10.8ms) {:filter=>{:votes__gt=>900000}}
21042
+ Movie Load (15.0ms) {:filter=>{:title=>"The Jerk"}}
21043
+ Movie Load (12.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21044
+ foo Load (0.0ms) bar
21045
+ Movie Load (12.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21046
+ Movie Load (5.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21047
+ Movie Load (5.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21048
+ Movie Load (5.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21049
+ Movie Load (15.8ms) {:filter=>{:votes__gt=>5}}
21050
+ foo Load (0.1ms) bar
21051
+ foo Load (0.0ms) bar
21052
+ foo Load (0.0ms) bar
21053
+ foo Load [CACHE] (0.0ms) bar
21054
+ foo Load (0.1ms) bar
21055
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21056
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
21057
+  (0.1ms) select sqlite_version(*)
21058
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
21059
+  (0.1ms) SELECT version FROM "schema_migrations"
21060
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
21061
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21062
+  (0.1ms) begin transaction
21063
+ --------------------------------------------------------------------------------------
21064
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
21065
+ --------------------------------------------------------------------------------------
21066
+  (0.1ms) rollback transaction
21067
+  (0.0ms) begin transaction
21068
+ ---------------------------------------------------------------------------------------------------------------
21069
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
21070
+ ---------------------------------------------------------------------------------------------------------------
21071
+  (0.1ms) rollback transaction
21072
+  (0.0ms) begin transaction
21073
+ ----------------------------------------------------------------------------------------------------
21074
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
21075
+ ----------------------------------------------------------------------------------------------------
21076
+  (0.1ms) rollback transaction
21077
+  (0.0ms) begin transaction
21078
+ -------------------------------------------------------------------------------------------------
21079
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
21080
+ -------------------------------------------------------------------------------------------------
21081
+  (0.1ms) rollback transaction
21082
+  (0.1ms) begin transaction
21083
+ ------------------------------------------------------------------------------------------------
21084
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
21085
+ ------------------------------------------------------------------------------------------------
21086
+  (0.1ms) rollback transaction
21087
+  (0.0ms) begin transaction
21088
+ --------------------------------------------------------------
21089
+ MontageRailsTest: test_: .configure should accept server url.
21090
+ --------------------------------------------------------------
21091
+  (0.0ms) rollback transaction
21092
+  (0.0ms) begin transaction
21093
+ --------------------------------------------------------------------------------------------
21094
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
21095
+ --------------------------------------------------------------------------------------------
21096
+  (0.0ms) rollback transaction
21097
+  (0.0ms) begin transaction
21098
+ ---------------------------------------------------------------------------------------
21099
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
21100
+ ---------------------------------------------------------------------------------------
21101
+  (0.0ms) rollback transaction
21102
+  (0.0ms) begin transaction
21103
+ -------------------------------------------------------------------------------------------
21104
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
21105
+ -------------------------------------------------------------------------------------------
21106
+  (0.0ms) rollback transaction
21107
+  (0.0ms) begin transaction
21108
+ ---------------------------------------------------------------------------------------
21109
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
21110
+ ---------------------------------------------------------------------------------------
21111
+  (0.1ms) rollback transaction
21112
+  (0.1ms) begin transaction
21113
+ -------------------------------------------------------------
21114
+ MontageRailsTest: test_: .configure should require a domain.
21115
+ -------------------------------------------------------------
21116
+  (0.1ms) rollback transaction
21117
+ Movie Load (13.2ms) {:filter=>{:title=>"Foo"}}
21118
+ Movie Load (10.5ms) {:filter=>{:votes__gt=>5}}
21119
+ Movie Load (10.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21120
+ Movie Load (5.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21121
+ foo Load (0.0ms) bar
21122
+ Movie Load (11.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21123
+ Movie Load (10.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21124
+ Movie Load (5.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21125
+ Movie Load (5.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21126
+ Movie Load (11.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21127
+ Movie Load (5.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21128
+ Movie Load (11.2ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
21129
+ Movie Load (11.1ms) {:filter=>{:title=>"The Jerk"}}
21130
+ Movie Load (11.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21131
+ Movie Load (12.0ms) {:filter=>{:votes__gt=>900000}}
21132
+ foo Load (0.1ms) bar
21133
+ foo Load (0.0ms) bar
21134
+ foo Load (0.1ms) bar
21135
+ foo Load (0.1ms) bar
21136
+ foo Load [CACHE] (0.0ms) bar
21137
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21138
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
21139
+  (0.1ms) select sqlite_version(*)
21140
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
21141
+  (0.1ms) SELECT version FROM "schema_migrations"
21142
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
21143
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21144
+ foo Load (0.1ms) bar
21145
+ foo Load [CACHE] (0.0ms) bar
21146
+ foo Load (0.0ms) bar
21147
+ foo Load (0.1ms) bar
21148
+ foo Load (0.1ms) bar
21149
+ Movie Load (11.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21150
+ Movie Load (10.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21151
+ Movie Load (10.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21152
+ Movie Load (5.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21153
+ Movie Load (5.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21154
+ Movie Load (5.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21155
+ Movie Load (11.1ms) {:filter=>{:votes__gt=>900000}}
21156
+ Movie Load (10.6ms) {:filter=>{:title=>"Foo"}}
21157
+ Movie Load (11.5ms) {:filter=>{:title=>"The Jerk"}}
21158
+ foo Load (0.0ms) bar
21159
+ Movie Load (11.3ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
21160
+ Movie Load (10.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21161
+ Movie Load (10.6ms) {:filter=>{:votes__gt=>5}}
21162
+ Movie Load (11.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21163
+ Movie Load (5.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21164
+  (0.1ms) begin transaction
21165
+ ---------------------------------------------------------------------------------------
21166
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
21167
+ ---------------------------------------------------------------------------------------
21168
+  (0.1ms) rollback transaction
21169
+  (0.0ms) begin transaction
21170
+ ----------------------------------------------------------------------------------------------------
21171
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
21172
+ ----------------------------------------------------------------------------------------------------
21173
+  (0.1ms) rollback transaction
21174
+  (0.1ms) begin transaction
21175
+ --------------------------------------------------------------------------------------
21176
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
21177
+ --------------------------------------------------------------------------------------
21178
+  (0.1ms) rollback transaction
21179
+  (0.1ms) begin transaction
21180
+ --------------------------------------------------------------
21181
+ MontageRailsTest: test_: .configure should accept server url.
21182
+ --------------------------------------------------------------
21183
+  (0.1ms) rollback transaction
21184
+  (0.0ms) begin transaction
21185
+ -------------------------------------------------------------
21186
+ MontageRailsTest: test_: .configure should require a domain.
21187
+ -------------------------------------------------------------
21188
+  (0.0ms) rollback transaction
21189
+  (0.0ms) begin transaction
21190
+ -------------------------------------------------------------------------------------------------
21191
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
21192
+ -------------------------------------------------------------------------------------------------
21193
+  (0.1ms) rollback transaction
21194
+  (0.1ms) begin transaction
21195
+ --------------------------------------------------------------------------------------------
21196
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
21197
+ --------------------------------------------------------------------------------------------
21198
+  (0.1ms) rollback transaction
21199
+  (0.0ms) begin transaction
21200
+ ------------------------------------------------------------------------------------------------
21201
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
21202
+ ------------------------------------------------------------------------------------------------
21203
+  (0.0ms) rollback transaction
21204
+  (0.1ms) begin transaction
21205
+ ---------------------------------------------------------------------------------------
21206
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
21207
+ ---------------------------------------------------------------------------------------
21208
+  (0.0ms) rollback transaction
21209
+  (0.0ms) begin transaction
21210
+ ---------------------------------------------------------------------------------------------------------------
21211
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
21212
+ ---------------------------------------------------------------------------------------------------------------
21213
+  (0.1ms) rollback transaction
21214
+  (0.1ms) begin transaction
21215
+ -------------------------------------------------------------------------------------------
21216
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
21217
+ -------------------------------------------------------------------------------------------
21218
+  (0.1ms) rollback transaction
21219
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21220
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
21221
+  (0.1ms) select sqlite_version(*)
21222
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
21223
+  (0.1ms) SELECT version FROM "schema_migrations"
21224
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
21225
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21226
+  (0.1ms) begin transaction
21227
+ ---------------------------------------------------------------------------------------
21228
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
21229
+ ---------------------------------------------------------------------------------------
21230
+  (0.1ms) rollback transaction
21231
+  (0.0ms) begin transaction
21232
+ ------------------------------------------------------------------------------------------------
21233
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
21234
+ ------------------------------------------------------------------------------------------------
21235
+  (0.0ms) rollback transaction
21236
+  (0.1ms) begin transaction
21237
+ ---------------------------------------------------------------------------------------
21238
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
21239
+ ---------------------------------------------------------------------------------------
21240
+  (0.1ms) rollback transaction
21241
+  (0.0ms) begin transaction
21242
+ -------------------------------------------------------------------------------------------
21243
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
21244
+ -------------------------------------------------------------------------------------------
21245
+  (0.0ms) rollback transaction
21246
+  (0.0ms) begin transaction
21247
+ ---------------------------------------------------------------------------------------------------------------
21248
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
21249
+ ---------------------------------------------------------------------------------------------------------------
21250
+  (0.1ms) rollback transaction
21251
+  (0.0ms) begin transaction
21252
+ --------------------------------------------------------------------------------------------
21253
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
21254
+ --------------------------------------------------------------------------------------------
21255
+  (0.0ms) rollback transaction
21256
+  (0.0ms) begin transaction
21257
+ ----------------------------------------------------------------------------------------------------
21258
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
21259
+ ----------------------------------------------------------------------------------------------------
21260
+  (0.1ms) rollback transaction
21261
+  (0.1ms) begin transaction
21262
+ --------------------------------------------------------------
21263
+ MontageRailsTest: test_: .configure should accept server url.
21264
+ --------------------------------------------------------------
21265
+  (0.1ms) rollback transaction
21266
+  (0.0ms) begin transaction
21267
+ -------------------------------------------------------------
21268
+ MontageRailsTest: test_: .configure should require a domain.
21269
+ -------------------------------------------------------------
21270
+  (0.1ms) rollback transaction
21271
+  (0.0ms) begin transaction
21272
+ -------------------------------------------------------------------------------------------------
21273
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
21274
+ -------------------------------------------------------------------------------------------------
21275
+  (0.1ms) rollback transaction
21276
+  (0.1ms) begin transaction
21277
+ --------------------------------------------------------------------------------------
21278
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
21279
+ --------------------------------------------------------------------------------------
21280
+  (0.1ms) rollback transaction
21281
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21282
+ Movie Load (74.0ms) {:filter=>{:votes__gt=>900000}}
21283
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21284
+ Movie Load (14.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21285
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21286
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21287
+ Movie Load (8.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21288
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21289
+ Movie Load (13.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21290
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21291
+ Movie Load (48.7ms) {:filter=>{:votes__gt=>5}}
21292
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21293
+ Movie Load (15.2ms) {:filter=>{:title=>"The Jerk"}}
21294
+ foo Load (0.0ms) bar
21295
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21296
+ Movie Load (14.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21297
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21298
+ Movie Load (13.2ms) {:filter=>{:title=>"Foo"}}
21299
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21300
+ Movie Load (12.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21301
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21302
+ Movie Load (13.8ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
21303
+ foo Load (0.1ms) bar
21304
+ foo Load [CACHE] (0.0ms) bar
21305
+ foo Load (0.0ms) bar
21306
+ foo Load (0.0ms) bar
21307
+ foo Load (0.1ms) bar
21308
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21309
+ Movie Create (13.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
21310
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21311
+ Movie Update (8.0ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
21312
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21313
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21314
+ Actor Create (8.2ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
21315
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21316
+ Actor Create (8.2ms) {:movie_id=>nil, :name=>"Mark Hamill"}
21317
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21318
+ Actor Load (9.8ms) {:filter=>{:movie_id=>""}, :limit=>1}
21319
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21320
+ Movie Create (16.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
21321
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21322
+ Movie Update (8.5ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
21323
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21324
+ Actor Create (7.3ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
21325
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21326
+ Actor Create (7.3ms) {:movie_id=>nil, :name=>"Mark Hamill"}
21327
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21328
+ MontageRails::BaseTest::TestClass Load (8.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21329
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:47:36 -0700
21330
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21331
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
21332
+  (0.1ms) select sqlite_version(*)
21333
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
21334
+  (0.1ms) SELECT version FROM "schema_migrations"
21335
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
21336
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21337
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:47:49 -0700
21338
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:47:49 -0700
21339
+ Movie Create (13.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
21340
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:47:49 -0700
21341
+ Movie Update (10.0ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
21342
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-12 12:47:49 -0700
21343
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:47:49 -0700
21344
+ Actor Create (8.0ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
21345
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:47:49 -0700
21346
+ Actor Create (7.4ms) {:movie_id=>nil, :name=>"Mark Hamill"}
21347
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-12 12:47:50 -0700
21348
+ Actor Load (9.1ms) {:filter=>{:movie_id=>""}, :limit=>1}
21349
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:47:50 -0700
21350
+ Movie Create (12.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
21351
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:47:50 -0700
21352
+ Movie Update (7.5ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
21353
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:47:50 -0700
21354
+ Actor Create (7.0ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
21355
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:47:50 -0700
21356
+ Actor Create (8.5ms) {:movie_id=>nil, :name=>"Mark Hamill"}
21357
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:50 -0700
21358
+ MontageRails::BaseTest::TestClass Load (8.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21359
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:47:50 -0700
21360
+  (0.1ms) begin transaction
21361
+ --------------------------------------------------------------
21362
+ MontageRailsTest: test_: .configure should accept server url.
21363
+ --------------------------------------------------------------
21364
+  (0.1ms) rollback transaction
21365
+  (0.2ms) begin transaction
21366
+ --------------------------------------------------------------------------------------------
21367
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
21368
+ --------------------------------------------------------------------------------------------
21369
+  (0.0ms) rollback transaction
21370
+  (0.1ms) begin transaction
21371
+ ------------------------------------------------------------------------------------------------
21372
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
21373
+ ------------------------------------------------------------------------------------------------
21374
+  (0.1ms) rollback transaction
21375
+  (0.0ms) begin transaction
21376
+ -------------------------------------------------------------------------------------------
21377
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
21378
+ -------------------------------------------------------------------------------------------
21379
+  (0.3ms) rollback transaction
21380
+  (0.0ms) begin transaction
21381
+ ---------------------------------------------------------------------------------------
21382
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
21383
+ ---------------------------------------------------------------------------------------
21384
+  (0.1ms) rollback transaction
21385
+  (0.0ms) begin transaction
21386
+ ----------------------------------------------------------------------------------------------------
21387
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
21388
+ ----------------------------------------------------------------------------------------------------
21389
+  (0.1ms) rollback transaction
21390
+  (0.0ms) begin transaction
21391
+ ---------------------------------------------------------------------------------------------------------------
21392
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
21393
+ ---------------------------------------------------------------------------------------------------------------
21394
+  (0.1ms) rollback transaction
21395
+  (0.0ms) begin transaction
21396
+ --------------------------------------------------------------------------------------
21397
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
21398
+ --------------------------------------------------------------------------------------
21399
+  (0.1ms) rollback transaction
21400
+  (0.1ms) begin transaction
21401
+ ---------------------------------------------------------------------------------------
21402
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
21403
+ ---------------------------------------------------------------------------------------
21404
+  (0.1ms) rollback transaction
21405
+  (0.0ms) begin transaction
21406
+ -------------------------------------------------------------
21407
+ MontageRailsTest: test_: .configure should require a domain.
21408
+ -------------------------------------------------------------
21409
+  (0.0ms) rollback transaction
21410
+  (0.1ms) begin transaction
21411
+ -------------------------------------------------------------------------------------------------
21412
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
21413
+ -------------------------------------------------------------------------------------------------
21414
+  (0.1ms) rollback transaction
21415
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:50 -0700
21416
+ Movie Load (64.4ms) {:filter=>{:votes__gt=>5}}
21417
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:50 -0700
21418
+ Movie Load (14.0ms) {:filter=>{:title=>"Foo"}}
21419
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:50 -0700
21420
+ Movie Load (13.0ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
21421
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:50 -0700
21422
+ Movie Load (13.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21423
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:50 -0700
21424
+ Movie Load (15.4ms) {:filter=>{:title=>"The Jerk"}}
21425
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:50 -0700
21426
+ Movie Load (13.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21427
+ foo Load (0.0ms) bar
21428
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:50 -0700
21429
+ Movie Load (67.2ms) {:filter=>{:votes__gt=>900000}}
21430
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:50 -0700
21431
+ Movie Load (14.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21432
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:50 -0700
21433
+ Movie Load (15.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21434
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:50 -0700
21435
+ Movie Load (13.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21436
+ foo Load (0.0ms) bar
21437
+ foo Load (0.0ms) bar
21438
+ foo Load (0.0ms) bar
21439
+ foo Load [CACHE] (0.0ms) bar
21440
+ foo Load (0.1ms) bar
21441
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21442
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
21443
+  (0.1ms) select sqlite_version(*)
21444
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
21445
+  (0.1ms) SELECT version FROM "schema_migrations"
21446
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
21447
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21448
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:47:57 -0700
21449
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:47:57 -0700
21450
+ Movie Create (13.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
21451
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:47:57 -0700
21452
+ Movie Update (7.5ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
21453
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-12 12:47:57 -0700
21454
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:47:57 -0700
21455
+ Actor Create (8.5ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
21456
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:47:57 -0700
21457
+ Actor Create (7.4ms) {:movie_id=>nil, :name=>"Mark Hamill"}
21458
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:57 -0700
21459
+ MontageRails::BaseTest::TestClass Load (11.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21460
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:47:57 -0700
21461
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:47:57 -0700
21462
+ Movie Create (15.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
21463
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:47:57 -0700
21464
+ Movie Update (9.1ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
21465
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:47:57 -0700
21466
+ Actor Create (8.3ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
21467
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:47:57 -0700
21468
+ Actor Create (8.1ms) {:movie_id=>nil, :name=>"Mark Hamill"}
21469
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-12 12:47:57 -0700
21470
+ Actor Load (10.6ms) {:filter=>{:movie_id=>""}, :limit=>1}
21471
+  (0.1ms) begin transaction
21472
+ --------------------------------------------------------------
21473
+ MontageRailsTest: test_: .configure should accept server url.
21474
+ --------------------------------------------------------------
21475
+  (0.1ms) rollback transaction
21476
+  (0.2ms) begin transaction
21477
+ ---------------------------------------------------------------------------------------
21478
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
21479
+ ---------------------------------------------------------------------------------------
21480
+  (0.1ms) rollback transaction
21481
+  (0.1ms) begin transaction
21482
+ -------------------------------------------------------------------------------------------------
21483
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
21484
+ -------------------------------------------------------------------------------------------------
21485
+  (0.1ms) rollback transaction
21486
+  (0.0ms) begin transaction
21487
+ ------------------------------------------------------------------------------------------------
21488
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
21489
+ ------------------------------------------------------------------------------------------------
21490
+  (0.0ms) rollback transaction
21491
+  (0.1ms) begin transaction
21492
+ -------------------------------------------------------------------------------------------
21493
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
21494
+ -------------------------------------------------------------------------------------------
21495
+  (0.1ms) rollback transaction
21496
+  (0.1ms) begin transaction
21497
+ ---------------------------------------------------------------------------------------
21498
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
21499
+ ---------------------------------------------------------------------------------------
21500
+  (0.1ms) rollback transaction
21501
+  (0.1ms) begin transaction
21502
+ ---------------------------------------------------------------------------------------------------------------
21503
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
21504
+ ---------------------------------------------------------------------------------------------------------------
21505
+  (0.1ms) rollback transaction
21506
+  (0.1ms) begin transaction
21507
+ --------------------------------------------------------------------------------------
21508
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
21509
+ --------------------------------------------------------------------------------------
21510
+  (0.1ms) rollback transaction
21511
+  (0.1ms) begin transaction
21512
+ ----------------------------------------------------------------------------------------------------
21513
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
21514
+ ----------------------------------------------------------------------------------------------------
21515
+  (0.1ms) rollback transaction
21516
+  (0.1ms) begin transaction
21517
+ -------------------------------------------------------------
21518
+ MontageRailsTest: test_: .configure should require a domain.
21519
+ -------------------------------------------------------------
21520
+  (0.1ms) rollback transaction
21521
+  (0.0ms) begin transaction
21522
+ --------------------------------------------------------------------------------------------
21523
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
21524
+ --------------------------------------------------------------------------------------------
21525
+  (0.1ms) rollback transaction
21526
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:58 -0700
21527
+ Movie Load (53.2ms) {:filter=>{:votes__gt=>5}}
21528
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:58 -0700
21529
+ Movie Load (13.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21530
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:58 -0700
21531
+ Movie Load (13.0ms) {:filter=>{:title=>"Foo"}}
21532
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:58 -0700
21533
+ Movie Load (14.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21534
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:58 -0700
21535
+ Movie Load (12.5ms) {:filter=>{:title=>"The Jerk"}}
21536
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:58 -0700
21537
+ Movie Load (13.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21538
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:58 -0700
21539
+ Movie Load (53.8ms) {:filter=>{:votes__gt=>900000}}
21540
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:58 -0700
21541
+ Movie Load (14.7ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
21542
+ foo Load (0.0ms) bar
21543
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:58 -0700
21544
+ Movie Load (17.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21545
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:47:58 -0700
21546
+ Movie Load (8.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21547
+ foo Load [CACHE] (0.0ms) bar
21548
+ foo Load (0.0ms) bar
21549
+ foo Load (0.0ms) bar
21550
+ foo Load (0.0ms) bar
21551
+ foo Load (0.0ms) bar
21552
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21553
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
21554
+  (0.1ms) select sqlite_version(*)
21555
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
21556
+  (0.1ms) SELECT version FROM "schema_migrations"
21557
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
21558
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21559
+ foo Load (0.1ms) bar
21560
+ foo Load (0.0ms) bar
21561
+ foo Load [CACHE] (0.0ms) bar
21562
+ foo Load (0.0ms) bar
21563
+ foo Load (0.0ms) bar
21564
+  (0.1ms) begin transaction
21565
+ ----------------------------------------------------------------------------------------------------
21566
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
21567
+ ----------------------------------------------------------------------------------------------------
21568
+  (0.1ms) rollback transaction
21569
+  (0.0ms) begin transaction
21570
+ --------------------------------------------------------------------------------------
21571
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
21572
+ --------------------------------------------------------------------------------------
21573
+  (0.0ms) rollback transaction
21574
+  (0.1ms) begin transaction
21575
+ ---------------------------------------------------------------------------------------
21576
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
21577
+ ---------------------------------------------------------------------------------------
21578
+  (0.0ms) rollback transaction
21579
+  (0.0ms) begin transaction
21580
+ -------------------------------------------------------------------------------------------
21581
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
21582
+ -------------------------------------------------------------------------------------------
21583
+  (0.0ms) rollback transaction
21584
+  (0.0ms) begin transaction
21585
+ --------------------------------------------------------------------------------------------
21586
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
21587
+ --------------------------------------------------------------------------------------------
21588
+  (0.1ms) rollback transaction
21589
+  (0.1ms) begin transaction
21590
+ --------------------------------------------------------------
21591
+ MontageRailsTest: test_: .configure should accept server url.
21592
+ --------------------------------------------------------------
21593
+  (0.1ms) rollback transaction
21594
+  (0.0ms) begin transaction
21595
+ -------------------------------------------------------------
21596
+ MontageRailsTest: test_: .configure should require a domain.
21597
+ -------------------------------------------------------------
21598
+  (0.0ms) rollback transaction
21599
+  (0.0ms) begin transaction
21600
+ ---------------------------------------------------------------------------------------
21601
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
21602
+ ---------------------------------------------------------------------------------------
21603
+  (0.1ms) rollback transaction
21604
+  (0.1ms) begin transaction
21605
+ ------------------------------------------------------------------------------------------------
21606
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
21607
+ ------------------------------------------------------------------------------------------------
21608
+  (0.1ms) rollback transaction
21609
+  (0.1ms) begin transaction
21610
+ ---------------------------------------------------------------------------------------------------------------
21611
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
21612
+ ---------------------------------------------------------------------------------------------------------------
21613
+  (0.1ms) rollback transaction
21614
+  (0.0ms) begin transaction
21615
+ -------------------------------------------------------------------------------------------------
21616
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
21617
+ -------------------------------------------------------------------------------------------------
21618
+  (0.1ms) rollback transaction
21619
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:48:05 -0700
21620
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:48:05 -0700
21621
+ Movie Create (14.7ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
21622
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:48:05 -0700
21623
+ Movie Update (14.7ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
21624
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-12 12:48:05 -0700
21625
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:48:05 -0700
21626
+ Actor Create (8.2ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
21627
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:48:05 -0700
21628
+ Actor Create (8.0ms) {:movie_id=>nil, :name=>"Mark Hamill"}
21629
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-12 12:48:05 -0700
21630
+ Actor Load (8.3ms) {:filter=>{:movie_id=>""}, :limit=>1}
21631
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:48:05 -0700
21632
+ Movie Create (12.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
21633
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:48:05 -0700
21634
+ Movie Update (7.1ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
21635
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:48:05 -0700
21636
+ Actor Create (7.1ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
21637
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:48:05 -0700
21638
+ Actor Create (9.4ms) {:movie_id=>nil, :name=>"Mark Hamill"}
21639
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:05 -0700
21640
+ MontageRails::BaseTest::TestClass Load (9.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21641
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:48:05 -0700
21642
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:05 -0700
21643
+ Movie Load (67.4ms) {:filter=>{:votes__gt=>900000}}
21644
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:06 -0700
21645
+ Movie Load (13.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21646
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:06 -0700
21647
+ Movie Load (13.3ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
21648
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:06 -0700
21649
+ Movie Load (15.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21650
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:06 -0700
21651
+ Movie Load (15.4ms) {:filter=>{:title=>"The Jerk"}}
21652
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:06 -0700
21653
+ Movie Load (13.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21654
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:06 -0700
21655
+ Movie Load (8.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21656
+ foo Load (0.0ms) bar
21657
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:06 -0700
21658
+ Movie Load (61.4ms) {:filter=>{:votes__gt=>5}}
21659
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:06 -0700
21660
+ Movie Load (14.6ms) {:filter=>{:title=>"Foo"}}
21661
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:06 -0700
21662
+ Movie Load (12.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21663
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21664
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
21665
+  (0.1ms) select sqlite_version(*)
21666
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
21667
+  (0.1ms) SELECT version FROM "schema_migrations"
21668
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
21669
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21670
+ foo Load [CACHE] (0.0ms) bar
21671
+ foo Load (0.1ms) bar
21672
+ foo Load (0.0ms) bar
21673
+ foo Load (0.0ms) bar
21674
+ foo Load (0.1ms) bar
21675
+  (0.1ms) begin transaction
21676
+ -------------------------------------------------------------------------------------------------
21677
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
21678
+ -------------------------------------------------------------------------------------------------
21679
+  (0.1ms) rollback transaction
21680
+  (0.0ms) begin transaction
21681
+ --------------------------------------------------------------------------------------------
21682
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
21683
+ --------------------------------------------------------------------------------------------
21684
+  (0.1ms) rollback transaction
21685
+  (0.0ms) begin transaction
21686
+ ------------------------------------------------------------------------------------------------
21687
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
21688
+ ------------------------------------------------------------------------------------------------
21689
+  (0.1ms) rollback transaction
21690
+  (0.1ms) begin transaction
21691
+ ---------------------------------------------------------------------------------------
21692
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
21693
+ ---------------------------------------------------------------------------------------
21694
+  (0.1ms) rollback transaction
21695
+  (0.0ms) begin transaction
21696
+ --------------------------------------------------------------
21697
+ MontageRailsTest: test_: .configure should accept server url.
21698
+ --------------------------------------------------------------
21699
+  (0.1ms) rollback transaction
21700
+  (0.0ms) begin transaction
21701
+ -------------------------------------------------------------------------------------------
21702
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
21703
+ -------------------------------------------------------------------------------------------
21704
+  (0.1ms) rollback transaction
21705
+  (0.0ms) begin transaction
21706
+ ---------------------------------------------------------------------------------------------------------------
21707
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
21708
+ ---------------------------------------------------------------------------------------------------------------
21709
+  (0.1ms) rollback transaction
21710
+  (0.0ms) begin transaction
21711
+ --------------------------------------------------------------------------------------
21712
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
21713
+ --------------------------------------------------------------------------------------
21714
+  (0.1ms) rollback transaction
21715
+  (0.1ms) begin transaction
21716
+ -------------------------------------------------------------
21717
+ MontageRailsTest: test_: .configure should require a domain.
21718
+ -------------------------------------------------------------
21719
+  (0.1ms) rollback transaction
21720
+  (0.1ms) begin transaction
21721
+ ---------------------------------------------------------------------------------------
21722
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
21723
+ ---------------------------------------------------------------------------------------
21724
+  (0.1ms) rollback transaction
21725
+  (0.0ms) begin transaction
21726
+ ----------------------------------------------------------------------------------------------------
21727
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
21728
+ ----------------------------------------------------------------------------------------------------
21729
+  (0.1ms) rollback transaction
21730
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21731
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21732
+ Movie Create (13.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
21733
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21734
+ Movie Update (8.6ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
21735
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21736
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21737
+ Actor Create (9.0ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
21738
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21739
+ Actor Create (8.4ms) {:movie_id=>nil, :name=>"Mark Hamill"}
21740
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21741
+ Actor Load (9.4ms) {:filter=>{:movie_id=>""}, :limit=>1}
21742
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21743
+ Movie Create (16.7ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
21744
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21745
+ Movie Update (8.7ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
21746
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21747
+ Actor Create (7.9ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
21748
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21749
+ Actor Create (8.7ms) {:movie_id=>nil, :name=>"Mark Hamill"}
21750
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21751
+ MontageRails::BaseTest::TestClass Load (8.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21752
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21753
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21754
+ Movie Load (75.0ms) {:filter=>{:votes__gt=>5}}
21755
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21756
+ Movie Load (16.1ms) {:filter=>{:title=>"Foo"}}
21757
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21758
+ Movie Load (13.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21759
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21760
+ Movie Load (13.8ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
21761
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21762
+ Movie Load (14.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21763
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21764
+ Movie Load (67.1ms) {:filter=>{:votes__gt=>900000}}
21765
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21766
+ Movie Load (14.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21767
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21768
+ Movie Load (8.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21769
+ foo Load (0.0ms) bar
21770
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21771
+ Movie Load (14.8ms) {:filter=>{:title=>"The Jerk"}}
21772
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:15 -0700
21773
+ Movie Load (12.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21774
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21775
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
21776
+  (0.1ms) select sqlite_version(*)
21777
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
21778
+  (0.1ms) SELECT version FROM "schema_migrations"
21779
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
21780
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21781
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21782
+ Movie Load (25.1ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
21783
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21784
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21785
+ Movie Load (55.2ms) {:filter=>{:votes__gt=>900000}}
21786
+ foo Load (0.0ms) bar
21787
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21788
+ Movie Load (14.3ms) {:filter=>{:title=>"The Jerk"}}
21789
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21790
+ Movie Load (59.7ms) {:filter=>{:votes__gt=>5}}
21791
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21792
+ Movie Load (12.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21793
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21794
+ Movie Load (8.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21795
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21796
+ Movie Load (13.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21797
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21798
+ Movie Load (13.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21799
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21800
+ Movie Load (13.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21801
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21802
+ Movie Load (12.4ms) {:filter=>{:title=>"Foo"}}
21803
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21804
+ Movie Create (16.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
21805
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21806
+ Movie Update (7.5ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
21807
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21808
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21809
+ Actor Create (7.9ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
21810
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21811
+ Actor Create (9.3ms) {:movie_id=>nil, :name=>"Mark Hamill"}
21812
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21813
+ Actor Load (14.2ms) {:filter=>{:movie_id=>""}, :limit=>1}
21814
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21815
+ Movie Create (12.8ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
21816
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21817
+ Movie Update (7.9ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
21818
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21819
+ Actor Create (7.6ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
21820
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21821
+ Actor Create (7.1ms) {:movie_id=>nil, :name=>"Mark Hamill"}
21822
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21823
+ MontageRails::BaseTest::TestClass Load (10.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21824
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:48:23 -0700
21825
+ foo Load (0.1ms) bar
21826
+ foo Load (0.0ms) bar
21827
+ foo Load (0.1ms) bar
21828
+ foo Load [CACHE] (0.0ms) bar
21829
+ foo Load (0.0ms) bar
21830
+  (0.1ms) begin transaction
21831
+ --------------------------------------------------------------
21832
+ MontageRailsTest: test_: .configure should accept server url.
21833
+ --------------------------------------------------------------
21834
+  (0.1ms) rollback transaction
21835
+  (0.2ms) begin transaction
21836
+ ---------------------------------------------------------------------------------------------------------------
21837
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
21838
+ ---------------------------------------------------------------------------------------------------------------
21839
+  (0.1ms) rollback transaction
21840
+  (0.0ms) begin transaction
21841
+ ---------------------------------------------------------------------------------------
21842
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
21843
+ ---------------------------------------------------------------------------------------
21844
+  (0.1ms) rollback transaction
21845
+  (0.0ms) begin transaction
21846
+ -------------------------------------------------------------------------------------------------
21847
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
21848
+ -------------------------------------------------------------------------------------------------
21849
+  (0.1ms) rollback transaction
21850
+  (0.0ms) begin transaction
21851
+ ------------------------------------------------------------------------------------------------
21852
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
21853
+ ------------------------------------------------------------------------------------------------
21854
+  (0.0ms) rollback transaction
21855
+  (0.1ms) begin transaction
21856
+ -------------------------------------------------------------------------------------------
21857
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
21858
+ -------------------------------------------------------------------------------------------
21859
+  (0.1ms) rollback transaction
21860
+  (0.1ms) begin transaction
21861
+ --------------------------------------------------------------------------------------
21862
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
21863
+ --------------------------------------------------------------------------------------
21864
+  (0.1ms) rollback transaction
21865
+  (0.0ms) begin transaction
21866
+ ----------------------------------------------------------------------------------------------------
21867
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
21868
+ ----------------------------------------------------------------------------------------------------
21869
+  (0.1ms) rollback transaction
21870
+  (0.0ms) begin transaction
21871
+ -------------------------------------------------------------
21872
+ MontageRailsTest: test_: .configure should require a domain.
21873
+ -------------------------------------------------------------
21874
+  (0.0ms) rollback transaction
21875
+  (0.0ms) begin transaction
21876
+ ---------------------------------------------------------------------------------------
21877
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
21878
+ ---------------------------------------------------------------------------------------
21879
+  (0.1ms) rollback transaction
21880
+  (0.0ms) begin transaction
21881
+ --------------------------------------------------------------------------------------------
21882
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
21883
+ --------------------------------------------------------------------------------------------
21884
+  (0.1ms) rollback transaction
21885
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21886
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
21887
+  (0.1ms) select sqlite_version(*)
21888
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
21889
+  (0.1ms) SELECT version FROM "schema_migrations"
21890
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
21891
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21892
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21893
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21894
+ Movie Create (13.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
21895
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21896
+ Movie Update (7.4ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
21897
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21898
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21899
+ Actor Create (8.8ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
21900
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21901
+ Actor Create (7.4ms) {:movie_id=>nil, :name=>"Mark Hamill"}
21902
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21903
+ Actor Load (11.6ms) {:filter=>{:movie_id=>""}, :limit=>1}
21904
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21905
+ Movie Create (12.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
21906
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21907
+ Movie Update (7.5ms) : {:id=>nil, :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
21908
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21909
+ Actor Create (7.6ms) {:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}
21910
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/save/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21911
+ Actor Create (7.2ms) {:movie_id=>nil, :name=>"Mark Hamill"}
21912
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21913
+ MontageRails::BaseTest::TestClass Load (9.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21914
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21915
+ foo Load (0.0ms) bar
21916
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21917
+ Movie Load (15.7ms) {:filter=>{:title=>"Foo"}}
21918
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21919
+ Movie Load (19.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21920
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21921
+ Movie Load (13.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21922
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21923
+ Movie Load (15.6ms) {:filter=>{:title=>"The Jerk"}}
21924
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21925
+ Movie Load (15.2ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
21926
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21927
+ Movie Load (15.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21928
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21929
+ Movie Load (13.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21930
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21931
+ Movie Load (8.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
21932
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21933
+ Movie Load (54.3ms) {:filter=>{:votes__gt=>5}}
21934
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-12 12:48:32 -0700
21935
+ Movie Load (60.8ms) {:filter=>{:votes__gt=>900000}}
21936
+ foo Load (0.1ms) bar
21937
+ foo Load (0.0ms) bar
21938
+ foo Load (0.1ms) bar
21939
+ foo Load (0.0ms) bar
21940
+ foo Load [CACHE] (0.0ms) bar
21941
+  (0.1ms) begin transaction
21942
+ -------------------------------------------------------------------------------------------
21943
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
21944
+ -------------------------------------------------------------------------------------------
21945
+  (0.1ms) rollback transaction
21946
+  (0.2ms) begin transaction
21947
+ ------------------------------------------------------------------------------------------------
21948
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
21949
+ ------------------------------------------------------------------------------------------------
21950
+  (0.1ms) rollback transaction
21951
+  (0.1ms) begin transaction
21952
+ --------------------------------------------------------------------------------------------
21953
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
21954
+ --------------------------------------------------------------------------------------------
21955
+  (0.1ms) rollback transaction
21956
+  (0.0ms) begin transaction
21957
+ ---------------------------------------------------------------------------------------------------------------
21958
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
21959
+ ---------------------------------------------------------------------------------------------------------------
21960
+  (0.1ms) rollback transaction
21961
+  (0.0ms) begin transaction
21962
+ ----------------------------------------------------------------------------------------------------
21963
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
21964
+ ----------------------------------------------------------------------------------------------------
21965
+  (0.1ms) rollback transaction
21966
+  (0.0ms) begin transaction
21967
+ -------------------------------------------------------------
21968
+ MontageRailsTest: test_: .configure should require a domain.
21969
+ -------------------------------------------------------------
21970
+  (0.1ms) rollback transaction
21971
+  (0.0ms) begin transaction
21972
+ --------------------------------------------------------------
21973
+ MontageRailsTest: test_: .configure should accept server url.
21974
+ --------------------------------------------------------------
21975
+  (0.1ms) rollback transaction
21976
+  (0.1ms) begin transaction
21977
+ ---------------------------------------------------------------------------------------
21978
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
21979
+ ---------------------------------------------------------------------------------------
21980
+  (0.1ms) rollback transaction
21981
+  (0.1ms) begin transaction
21982
+ -------------------------------------------------------------------------------------------------
21983
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
21984
+ -------------------------------------------------------------------------------------------------
21985
+  (0.1ms) rollback transaction
21986
+  (0.0ms) begin transaction
21987
+ --------------------------------------------------------------------------------------
21988
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
21989
+ --------------------------------------------------------------------------------------
21990
+  (0.1ms) rollback transaction
21991
+  (0.1ms) begin transaction
21992
+ ---------------------------------------------------------------------------------------
21993
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
21994
+ ---------------------------------------------------------------------------------------
21995
+  (0.1ms) rollback transaction
21996
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
21997
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
21998
+  (8.1ms) select sqlite_version(*)
21999
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
22000
+  (0.1ms) SELECT version FROM "schema_migrations"
22001
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
22002
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22003
+  (0.1ms) begin transaction
22004
+ -------------------------------------------------------------------------------------------
22005
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
22006
+ -------------------------------------------------------------------------------------------
22007
+  (0.1ms) rollback transaction
22008
+  (0.0ms) begin transaction
22009
+ -------------------------------------------------------------
22010
+ MontageRailsTest: test_: .configure should require a domain.
22011
+ -------------------------------------------------------------
22012
+  (0.0ms) rollback transaction
22013
+  (0.1ms) begin transaction
22014
+ --------------------------------------------------------------
22015
+ MontageRailsTest: test_: .configure should accept server url.
22016
+ --------------------------------------------------------------
22017
+  (0.0ms) rollback transaction
22018
+  (0.0ms) begin transaction
22019
+ ------------------------------------------------------------------------------------------------
22020
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
22021
+ ------------------------------------------------------------------------------------------------
22022
+  (0.0ms) rollback transaction
22023
+  (0.0ms) begin transaction
22024
+ -------------------------------------------------------------------------------------------------
22025
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
22026
+ -------------------------------------------------------------------------------------------------
22027
+  (0.0ms) rollback transaction
22028
+  (0.0ms) begin transaction
22029
+ ---------------------------------------------------------------------------------------
22030
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
22031
+ ---------------------------------------------------------------------------------------
22032
+  (0.0ms) rollback transaction
22033
+  (0.0ms) begin transaction
22034
+ --------------------------------------------------------------------------------------------
22035
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
22036
+ --------------------------------------------------------------------------------------------
22037
+  (0.0ms) rollback transaction
22038
+  (0.0ms) begin transaction
22039
+ ----------------------------------------------------------------------------------------------------
22040
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
22041
+ ----------------------------------------------------------------------------------------------------
22042
+  (0.1ms) rollback transaction
22043
+  (0.0ms) begin transaction
22044
+ ---------------------------------------------------------------------------------------------------------------
22045
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
22046
+ ---------------------------------------------------------------------------------------------------------------
22047
+  (0.1ms) rollback transaction
22048
+  (0.1ms) begin transaction
22049
+ --------------------------------------------------------------------------------------
22050
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
22051
+ --------------------------------------------------------------------------------------
22052
+  (0.1ms) rollback transaction
22053
+  (0.0ms) begin transaction
22054
+ ---------------------------------------------------------------------------------------
22055
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
22056
+ ---------------------------------------------------------------------------------------
22057
+  (0.1ms) rollback transaction
22058
+ foo Load (0.0ms) bar
22059
+ foo Load (0.0ms) bar
22060
+ foo Load (0.0ms) bar
22061
+ foo Load [CACHE] (0.0ms) bar
22062
+ foo Load (0.1ms) bar
22063
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22064
+ Movie Load (30.7ms) {:filter=>{:title=>"The Jerk"}}
22065
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22066
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22067
+ Movie Load (6.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22068
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22069
+ Movie Load (6.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22070
+ foo Load (0.0ms) bar
22071
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22072
+ Movie Load (5.9ms) {:filter=>{:title=>"Foo"}}
22073
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22074
+ Movie Load (7.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22075
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22076
+ Movie Load (7.2ms) {:filter=>{:votes__gt=>5}}
22077
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22078
+ Movie Load (5.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22079
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22080
+ Movie Load (7.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22081
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22082
+ Movie Load (6.6ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
22083
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22084
+ Movie Load (5.6ms) {:filter=>{:votes__gt=>900000}}
22085
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22086
+ Movie Create (6.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22087
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22088
+ Movie Update (5.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22089
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22090
+ Movie Update (5.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22091
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22092
+ Movie Load (5.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22093
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22094
+ Started POST "/montage_rails_mock/api/v1/schemas/studios/query/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22095
+ Studio Load (6.9ms) {:filter=>{:name=>"Universal"}, :limit=>1}
22096
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22097
+ Studio Load (8.1ms) 19442e09-5c2d-4e5d-8f34-675570e81414
22098
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22099
+ Studio Load (6.7ms) 19442e09-5c2d-4e5d-8f34-675570e81414
22100
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22101
+ Movie Create (5.7ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22102
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:57 -0700
22103
+ Movie Update (5.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22104
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22105
+ Movie Create (7.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22106
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22107
+ Movie Update (6.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22108
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22109
+ Movie Create (5.8ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22110
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22111
+ Movie Update (6.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22112
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22113
+ Movie Create (5.8ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22114
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22115
+ Movie Update (5.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22116
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22117
+ Movie Load (6.8ms) {:filter=>{}}
22118
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22119
+ Movie Load (6.2ms) #<MontageRails::Relation:0x007fbe9a143920>
22120
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22121
+ Movie Load (6.1ms) {:filter=>{}, :limit=>1}
22122
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22123
+ Actor Load (7.5ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
22124
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22125
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22126
+ Actor Load (6.8ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
22127
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22128
+ MontageRails::BaseTest::TestClass Load (6.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22129
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22130
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22131
+ Movie Create (5.8ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22132
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22133
+ Movie Update (5.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22134
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22135
+ Movie Create (5.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22136
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22137
+ Movie Update (6.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22138
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22139
+ Movie Create (6.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22140
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22141
+ Movie Update (5.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22142
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22143
+ Movie Create (5.8ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22144
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22145
+ Movie Update (6.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22146
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22147
+ Movie Create (5.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22148
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22149
+ Movie Update (6.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22150
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22151
+ Movie Create (6.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22152
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22153
+ Movie Update (6.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22154
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22155
+ Movie Create (6.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22156
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22157
+ Movie Update (6.3ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22158
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22159
+ Movie Update (5.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22160
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22161
+ Movie Create (5.7ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22162
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22163
+ Movie Update (13.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22164
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22165
+ Movie Load (8.6ms) {:filter=>{}, :limit=>1}
22166
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22167
+ Actor Load (7.5ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
22168
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22169
+ Actor Load (7.5ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
22170
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22171
+ MontageRails::BaseTest::TestClass Load (6.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22172
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22173
+ Actor Load (7.3ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
22174
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22175
+ Movie Load (6.4ms) #<MontageRails::Relation:0x007fbe98e1ad80>
22176
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22177
+ Movie Create (5.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22178
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22179
+ Movie Update (7.0ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22180
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22181
+ Movie Load (6.4ms) {:filter=>{}, :limit=>1}
22182
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22183
+ Actor Load (6.7ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
22184
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22185
+ Actor Load (6.9ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
22186
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22187
+ Actor Load (7.6ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
22188
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22189
+ Movie Create (6.7ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22190
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22191
+ Movie Update (7.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22192
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22193
+ Movie Load (6.7ms) {:filter=>{}, :limit=>1}
22194
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22195
+ Actor Load (6.8ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
22196
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22197
+ Actor Load (7.0ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
22198
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22199
+ Actor Load (6.7ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}, :limit=>1}
22200
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22201
+ Movie Create (5.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22202
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22203
+ Movie Update (6.4ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22204
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22205
+ Movie Update (6.2ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>900, :year=>1983}
22206
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22207
+ Movie Create (7.0ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22208
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:07:58 -0700
22209
+ Movie Update (6.0ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22210
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-17 09:09:40 -0700
22211
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:09:45 -0700
22212
+ Movie Load (10.4ms) {:filter=>{}, :limit=>1}
22213
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:10:02 -0700
22214
+ Movie Load (9.0ms) {:filter=>{:title=>"The Jerk"}}
22215
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:10:15 -0700
22216
+ Movie Load (9.1ms) {:filter=>{:votes__gt=>100}}
22217
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:10:21 -0700
22218
+ Movie Load (9.2ms) {:filter=>{:votes__gt=>50}}
22219
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:10:24 -0700
22220
+ Movie Load (9.3ms) {:filter=>{}}
22221
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22222
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
22223
+  (0.1ms) select sqlite_version(*)
22224
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
22225
+  (0.1ms) SELECT version FROM "schema_migrations"
22226
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
22227
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22228
+  (0.1ms) begin transaction
22229
+ ---------------------------------------------------------------------------------------------------------------
22230
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
22231
+ ---------------------------------------------------------------------------------------------------------------
22232
+  (0.1ms) rollback transaction
22233
+  (0.0ms) begin transaction
22234
+ ----------------------------------------------------------------------------------------------------
22235
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
22236
+ ----------------------------------------------------------------------------------------------------
22237
+  (0.0ms) rollback transaction
22238
+  (0.1ms) begin transaction
22239
+ --------------------------------------------------------------------------------------------
22240
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
22241
+ --------------------------------------------------------------------------------------------
22242
+  (0.0ms) rollback transaction
22243
+  (0.1ms) begin transaction
22244
+ ---------------------------------------------------------------------------------------
22245
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
22246
+ ---------------------------------------------------------------------------------------
22247
+  (0.0ms) rollback transaction
22248
+  (0.1ms) begin transaction
22249
+ -------------------------------------------------------------------------------------------------
22250
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
22251
+ -------------------------------------------------------------------------------------------------
22252
+  (0.0ms) rollback transaction
22253
+  (0.0ms) begin transaction
22254
+ --------------------------------------------------------------
22255
+ MontageRailsTest: test_: .configure should accept server url.
22256
+ --------------------------------------------------------------
22257
+  (0.1ms) rollback transaction
22258
+  (0.0ms) begin transaction
22259
+ -------------------------------------------------------------------------------------------
22260
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
22261
+ -------------------------------------------------------------------------------------------
22262
+  (0.1ms) rollback transaction
22263
+  (0.1ms) begin transaction
22264
+ ------------------------------------------------------------------------------------------------
22265
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
22266
+ ------------------------------------------------------------------------------------------------
22267
+  (0.1ms) rollback transaction
22268
+  (0.0ms) begin transaction
22269
+ -------------------------------------------------------------
22270
+ MontageRailsTest: test_: .configure should require a domain.
22271
+ -------------------------------------------------------------
22272
+  (0.0ms) rollback transaction
22273
+  (0.0ms) begin transaction
22274
+ ---------------------------------------------------------------------------------------
22275
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
22276
+ ---------------------------------------------------------------------------------------
22277
+  (0.0ms) rollback transaction
22278
+  (0.0ms) begin transaction
22279
+ --------------------------------------------------------------------------------------
22280
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
22281
+ --------------------------------------------------------------------------------------
22282
+  (0.0ms) rollback transaction
22283
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22284
+ Movie Load (18.0ms) {:filter=>{:title=>"The Jerk"}}
22285
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22286
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22287
+ Movie Load (6.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22288
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22289
+ Movie Load (6.4ms) {:filter=>{:votes__gt=>5}}
22290
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22291
+ Movie Load (6.3ms) {:filter=>{:title=>"Foo"}}
22292
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22293
+ Movie Load (6.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22294
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22295
+ Movie Load (6.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22296
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22297
+ Movie Load (6.3ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
22298
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22299
+ Movie Load (5.6ms) {:filter=>{:votes__gt=>900000}}
22300
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22301
+ Movie Load (5.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22302
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22303
+ Movie Load (6.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22304
+ foo Load (0.0ms) bar
22305
+ foo Load (0.1ms) bar
22306
+ foo Load (0.1ms) bar
22307
+ foo Load (0.0ms) bar
22308
+ foo Load [CACHE] (0.0ms) bar
22309
+ foo Load (0.0ms) bar
22310
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22311
+ Movie Load (6.5ms) {:filter=>{}}
22312
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22313
+ Movie Create (6.0ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22314
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22315
+ Movie Update (5.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22316
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22317
+ Movie Create (5.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22318
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22319
+ Movie Update (6.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22320
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22321
+ Movie Create (5.4ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22322
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22323
+ Movie Update (5.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22324
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22325
+ Movie Load (6.1ms) {:filter=>{}, :limit=>1}
22326
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22327
+ Actor Load (7.6ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
22328
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22329
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22330
+ Actor Load (6.5ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
22331
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22332
+ MontageRails::BaseTest::TestClass Load (6.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22333
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22334
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22335
+ Movie Create (5.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22336
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22337
+ Movie Update (5.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22338
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22339
+ Movie Create (5.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22340
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22341
+ Movie Update (6.0ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22342
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22343
+ Movie Create (5.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22344
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22345
+ Movie Update (6.0ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22346
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22347
+ Movie Create (5.7ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22348
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22349
+ Movie Update (6.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22350
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22351
+ Movie Load (6.0ms) {:filter=>{}, :limit=>1}
22352
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22353
+ Actor Load (6.4ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
22354
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22355
+ Actor Load (5.8ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
22356
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22357
+ Actor Load (6.6ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
22358
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22359
+ Movie Create (6.4ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22360
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22361
+ Movie Update (6.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22362
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22363
+ Movie Create (5.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22364
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22365
+ Movie Update (5.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22366
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22367
+ Movie Load (6.1ms) {:filter=>{}, :limit=>1}
22368
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22369
+ Actor Load (7.4ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
22370
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22371
+ Actor Load (6.4ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
22372
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22373
+ Actor Load (6.6ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}, :limit=>1}
22374
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22375
+ Movie Create (5.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22376
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22377
+ Movie Update (5.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22378
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22379
+ Movie Create (6.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22380
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22381
+ Movie Update (5.5ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22382
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22383
+ Movie Update (13.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22384
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22385
+ Movie Create (7.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22386
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22387
+ Movie Update (6.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22388
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22389
+ Movie Create (6.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22390
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22391
+ Movie Update (6.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22392
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22393
+ Movie Load (7.2ms) #<MontageRails::Relation:0x007f89a8436758>
22394
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22395
+ Movie Load (6.5ms) #<MontageRails::Relation:0x007f89a8312de0>
22396
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22397
+ Movie Create (6.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22398
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22399
+ Movie Update (7.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22400
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22401
+ Movie Update (6.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22402
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22403
+ Movie Create (5.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22404
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22405
+ Movie Update (6.2ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22406
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22407
+ Movie Update (6.0ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>900, :year=>1983}
22408
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22409
+ Movie Create (6.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22410
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22411
+ Movie Update (6.2ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22412
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22413
+ Movie Create (6.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22414
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22415
+ Movie Update (7.0ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22416
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22417
+ Movie Load (7.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22418
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/" for 127.0.0.1 at 2015-08-17 09:17:40 -0700
22419
+ Started POST "/montage_rails_mock/api/v1/schemas/studios/query/" for 127.0.0.1 at 2015-08-17 09:17:41 -0700
22420
+ Studio Load (8.0ms) {:filter=>{:name=>"Universal"}, :limit=>1}
22421
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-08-17 09:17:41 -0700
22422
+ Studio Load (8.5ms) 19442e09-5c2d-4e5d-8f34-675570e81414
22423
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-08-17 09:17:41 -0700
22424
+ Studio Load (7.8ms) 19442e09-5c2d-4e5d-8f34-675570e81414
22425
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:41 -0700
22426
+ Movie Load (6.8ms) {:filter=>{}, :limit=>1}
22427
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:17:41 -0700
22428
+ Actor Load (7.6ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
22429
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:17:41 -0700
22430
+ Actor Load (7.5ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
22431
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:17:41 -0700
22432
+ MontageRails::BaseTest::TestClass Load (7.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22433
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:17:41 -0700
22434
+ Actor Load (9.4ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
22435
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-17 09:17:56 -0700
22436
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-17 09:17:57 -0700
22437
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/" for 127.0.0.1 at 2015-08-17 09:18:01 -0700
22438
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:18:05 -0700
22439
+ Movie Load (8.9ms) {:filter=>{}, :limit=>1}
22440
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:18:11 -0700
22441
+ Actor Load (9.7ms) {:filter=>{}, :limit=>1}
22442
+ Started POST "/montage_rails_mock/api/v1/schemas/studios/query/" for 127.0.0.1 at 2015-08-17 09:18:16 -0700
22443
+ Studio Load (8.6ms) {:filter=>{}, :limit=>1}
22444
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22445
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
22446
+  (0.1ms) select sqlite_version(*)
22447
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
22448
+  (0.2ms) SELECT version FROM "schema_migrations"
22449
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
22450
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22451
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:29 -0700
22452
+ Movie Load (17.2ms) {:filter=>{:votes__gt=>900000}}
22453
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:29 -0700
22454
+ Movie Load (6.3ms) {:filter=>{:title=>"Foo"}}
22455
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:29 -0700
22456
+ Movie Load (6.4ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
22457
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-17 09:27:29 -0700
22458
+ foo Load (0.0ms) bar
22459
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:29 -0700
22460
+ Movie Load (6.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22461
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:29 -0700
22462
+ Movie Load (6.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22463
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:29 -0700
22464
+ Movie Load (6.1ms) {:filter=>{:votes__gt=>5}}
22465
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:29 -0700
22466
+ Movie Load (7.5ms) {:filter=>{:title=>"The Jerk"}}
22467
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:29 -0700
22468
+ Movie Load (7.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22469
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:29 -0700
22470
+ Movie Load (5.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22471
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:29 -0700
22472
+ Movie Load (7.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22473
+  (0.1ms) begin transaction
22474
+ --------------------------------------------------------------------------------------
22475
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
22476
+ --------------------------------------------------------------------------------------
22477
+  (0.1ms) rollback transaction
22478
+  (0.2ms) begin transaction
22479
+ ------------------------------------------------------------------------------------------------
22480
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
22481
+ ------------------------------------------------------------------------------------------------
22482
+  (0.0ms) rollback transaction
22483
+  (0.0ms) begin transaction
22484
+ --------------------------------------------------------------
22485
+ MontageRailsTest: test_: .configure should accept server url.
22486
+ --------------------------------------------------------------
22487
+  (0.0ms) rollback transaction
22488
+  (0.0ms) begin transaction
22489
+ --------------------------------------------------------------------------------------------
22490
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
22491
+ --------------------------------------------------------------------------------------------
22492
+  (0.0ms) rollback transaction
22493
+  (0.0ms) begin transaction
22494
+ ----------------------------------------------------------------------------------------------------
22495
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
22496
+ ----------------------------------------------------------------------------------------------------
22497
+  (0.0ms) rollback transaction
22498
+  (0.0ms) begin transaction
22499
+ ---------------------------------------------------------------------------------------
22500
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
22501
+ ---------------------------------------------------------------------------------------
22502
+  (0.1ms) rollback transaction
22503
+  (0.0ms) begin transaction
22504
+ -------------------------------------------------------------------------------------------------
22505
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
22506
+ -------------------------------------------------------------------------------------------------
22507
+  (0.0ms) rollback transaction
22508
+  (0.0ms) begin transaction
22509
+ ---------------------------------------------------------------------------------------------------------------
22510
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
22511
+ ---------------------------------------------------------------------------------------------------------------
22512
+  (0.1ms) rollback transaction
22513
+  (0.0ms) begin transaction
22514
+ ---------------------------------------------------------------------------------------
22515
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
22516
+ ---------------------------------------------------------------------------------------
22517
+  (0.0ms) rollback transaction
22518
+  (0.0ms) begin transaction
22519
+ -------------------------------------------------------------
22520
+ MontageRailsTest: test_: .configure should require a domain.
22521
+ -------------------------------------------------------------
22522
+  (0.0ms) rollback transaction
22523
+  (0.0ms) begin transaction
22524
+ -------------------------------------------------------------------------------------------
22525
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
22526
+ -------------------------------------------------------------------------------------------
22527
+  (0.0ms) rollback transaction
22528
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22529
+ Movie Create (6.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22530
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22531
+ Movie Update (5.3ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22532
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22533
+ Movie Create (6.0ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22534
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22535
+ Movie Update (6.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22536
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22537
+ Movie Create (5.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22538
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22539
+ Movie Update (5.5ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22540
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22541
+ Movie Create (6.4ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22542
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22543
+ Movie Update (6.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22544
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22545
+ Movie Create (5.4ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22546
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22547
+ Movie Update (5.4ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22548
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22549
+ Movie Create (5.7ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22550
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22551
+ Movie Update (6.2ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22552
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22553
+ Movie Create (5.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22554
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22555
+ Movie Update (5.5ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22556
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22557
+ Movie Update (5.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22558
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22559
+ Movie Create (6.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22560
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22561
+ Movie Update (5.4ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22562
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22563
+ Movie Load (5.8ms) {:filter=>{}, :limit=>1}
22564
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22565
+ Actor Load (7.1ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
22566
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22567
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22568
+ Actor Load (6.2ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
22569
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22570
+ Actor Load (7.0ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}, :limit=>1}
22571
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22572
+ Movie Create (6.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22573
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22574
+ Movie Update (5.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22575
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22576
+ Movie Update (5.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>900, :year=>1983}
22577
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22578
+ Movie Create (6.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22579
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22580
+ Movie Update (5.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22581
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22582
+ Movie Create (5.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22583
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22584
+ Movie Update (5.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22585
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22586
+ Movie Update (6.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22587
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22588
+ Movie Load (6.3ms) {:filter=>{}, :limit=>1}
22589
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22590
+ Actor Load (6.2ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
22591
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22592
+ Actor Load (6.1ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
22593
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22594
+ MontageRails::BaseTest::TestClass Load (6.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22595
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22596
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22597
+ Actor Load (8.8ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
22598
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22599
+ Movie Load (6.0ms) #<MontageRails::Relation:0x007fb592b5ed30>
22600
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22601
+ Movie Load (6.0ms) {:filter=>{}}
22602
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22603
+ Movie Create (5.4ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22604
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22605
+ Movie Update (5.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22606
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22607
+ Movie Load (6.4ms) {:filter=>{}, :limit=>1}
22608
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22609
+ Actor Load (7.1ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
22610
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22611
+ Actor Load (6.3ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
22612
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22613
+ Actor Load (6.8ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
22614
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22615
+ Movie Load (6.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22616
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22617
+ Started POST "/montage_rails_mock/api/v1/schemas/studios/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22618
+ Studio Load (9.0ms) {:filter=>{:name=>"Universal"}, :limit=>1}
22619
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22620
+ Studio Load (9.8ms) 19442e09-5c2d-4e5d-8f34-675570e81414
22621
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22622
+ Studio Load (7.3ms) 19442e09-5c2d-4e5d-8f34-675570e81414
22623
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22624
+ Movie Load (6.3ms) #<MontageRails::Relation:0x007fb598b736f8>
22625
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22626
+ Movie Create (6.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22627
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22628
+ Movie Update (6.4ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22629
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22630
+ Movie Create (6.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22631
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22632
+ Movie Update (5.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22633
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22634
+ Movie Load (7.3ms) {:filter=>{}, :limit=>1}
22635
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22636
+ Actor Load (7.7ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
22637
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22638
+ Actor Load (6.5ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
22639
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22640
+ MontageRails::BaseTest::TestClass Load (6.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22641
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22642
+ Movie Create (5.7ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22643
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22644
+ Movie Update (6.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22645
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22646
+ Movie Create (6.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22647
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22648
+ Movie Update (6.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22649
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22650
+ Movie Create (5.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22651
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:27:30 -0700
22652
+ Movie Update (6.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22653
+ foo Load [CACHE] (0.0ms) bar
22654
+ foo Load (0.1ms) bar
22655
+ foo Load (0.0ms) bar
22656
+ foo Load (0.1ms) bar
22657
+ foo Load (0.1ms) bar
22658
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22659
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
22660
+  (0.1ms) select sqlite_version(*)
22661
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
22662
+  (0.1ms) SELECT version FROM "schema_migrations"
22663
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
22664
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22665
+  (0.1ms) begin transaction
22666
+ --------------------------------------------------------------------------------------------
22667
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
22668
+ --------------------------------------------------------------------------------------------
22669
+  (0.1ms) rollback transaction
22670
+  (0.0ms) begin transaction
22671
+ --------------------------------------------------------------------------------------
22672
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
22673
+ --------------------------------------------------------------------------------------
22674
+  (0.1ms) rollback transaction
22675
+  (0.1ms) begin transaction
22676
+ ---------------------------------------------------------------------------------------
22677
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
22678
+ ---------------------------------------------------------------------------------------
22679
+  (0.0ms) rollback transaction
22680
+  (0.1ms) begin transaction
22681
+ -------------------------------------------------------------
22682
+ MontageRailsTest: test_: .configure should require a domain.
22683
+ -------------------------------------------------------------
22684
+  (0.0ms) rollback transaction
22685
+  (0.0ms) begin transaction
22686
+ ---------------------------------------------------------------------------------------------------------------
22687
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
22688
+ ---------------------------------------------------------------------------------------------------------------
22689
+  (0.1ms) rollback transaction
22690
+  (0.1ms) begin transaction
22691
+ ----------------------------------------------------------------------------------------------------
22692
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
22693
+ ----------------------------------------------------------------------------------------------------
22694
+  (0.1ms) rollback transaction
22695
+  (0.0ms) begin transaction
22696
+ ------------------------------------------------------------------------------------------------
22697
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
22698
+ ------------------------------------------------------------------------------------------------
22699
+  (0.0ms) rollback transaction
22700
+  (0.0ms) begin transaction
22701
+ --------------------------------------------------------------
22702
+ MontageRailsTest: test_: .configure should accept server url.
22703
+ --------------------------------------------------------------
22704
+  (0.1ms) rollback transaction
22705
+  (0.0ms) begin transaction
22706
+ -------------------------------------------------------------------------------------------------
22707
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
22708
+ -------------------------------------------------------------------------------------------------
22709
+  (0.0ms) rollback transaction
22710
+  (0.0ms) begin transaction
22711
+ ---------------------------------------------------------------------------------------
22712
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
22713
+ ---------------------------------------------------------------------------------------
22714
+  (0.0ms) rollback transaction
22715
+  (0.0ms) begin transaction
22716
+ -------------------------------------------------------------------------------------------
22717
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
22718
+ -------------------------------------------------------------------------------------------
22719
+  (0.0ms) rollback transaction
22720
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22721
+ Movie Load (25.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22722
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22723
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22724
+ Movie Load (7.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22725
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22726
+ Movie Load (6.1ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
22727
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22728
+ Movie Load (6.5ms) {:filter=>{:votes__gt=>900000}}
22729
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22730
+ Movie Load (6.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22731
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22732
+ Movie Load (6.4ms) {:filter=>{:title=>"Foo"}}
22733
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22734
+ Movie Load (6.2ms) {:filter=>{:title=>"The Jerk"}}
22735
+ foo Load (0.0ms) bar
22736
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22737
+ Movie Load (6.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22738
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22739
+ Movie Load (7.2ms) {:filter=>{:votes__gt=>5}}
22740
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22741
+ Movie Load (5.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22742
+ foo Load (0.1ms) bar
22743
+ foo Load (0.0ms) bar
22744
+ foo Load (0.0ms) bar
22745
+ foo Load [CACHE] (0.0ms) bar
22746
+ foo Load (0.0ms) bar
22747
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22748
+ Movie Create (5.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22749
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22750
+ Movie Update (5.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22751
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22752
+ Movie Load (5.7ms) {:filter=>{}}
22753
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22754
+ Movie Create (5.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22755
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22756
+ Movie Update (5.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22757
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22758
+ Movie Update (5.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>900, :year=>1983}
22759
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22760
+ Movie Create (6.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22761
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22762
+ Movie Update (5.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22763
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22764
+ Movie Load (5.7ms) #<MontageRails::Relation:0x007fbfa07a01e0>
22765
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22766
+ Movie Create (5.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22767
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22768
+ Movie Update (5.2ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22769
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22770
+ Movie Load (6.3ms) {:filter=>{}, :limit=>1}
22771
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22772
+ Actor Load (8.0ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
22773
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22774
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22775
+ Actor Load (6.6ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
22776
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22777
+ MontageRails::BaseTest::TestClass Load (6.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22778
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22779
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22780
+ Actor Load (6.7ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
22781
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22782
+ Movie Load (6.1ms) {:filter=>{}, :limit=>1}
22783
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22784
+ Actor Load (6.5ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
22785
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22786
+ Actor Load (6.5ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
22787
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22788
+ Actor Load (6.5ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
22789
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22790
+ Movie Create (5.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22791
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22792
+ Movie Update (6.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22793
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22794
+ Movie Load (6.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22795
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22796
+ Started POST "/montage_rails_mock/api/v1/schemas/studios/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22797
+ Studio Load (7.8ms) {:filter=>{:name=>"Universal"}, :limit=>1}
22798
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22799
+ Studio Load (7.4ms) 19442e09-5c2d-4e5d-8f34-675570e81414
22800
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22801
+ Studio Load (7.5ms) 19442e09-5c2d-4e5d-8f34-675570e81414
22802
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22803
+ Movie Create (6.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22804
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22805
+ Movie Update (6.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22806
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22807
+ Movie Create (6.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22808
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22809
+ Movie Update (6.0ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22810
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22811
+ Movie Create (6.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22812
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22813
+ Movie Update (5.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22814
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22815
+ Movie Load (7.0ms) {:filter=>{}, :limit=>1}
22816
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22817
+ Actor Load (6.0ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
22818
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22819
+ Actor Load (6.2ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
22820
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22821
+ MontageRails::BaseTest::TestClass Load (5.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22822
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22823
+ Movie Create (6.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22824
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:39 -0700
22825
+ Movie Update (6.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22826
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22827
+ Movie Load (7.0ms) {:filter=>{}, :limit=>1}
22828
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22829
+ Actor Load (7.7ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
22830
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22831
+ Actor Load (7.5ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
22832
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22833
+ Actor Load (7.0ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}, :limit=>1}
22834
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22835
+ Movie Create (5.8ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22836
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22837
+ Movie Update (6.3ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22838
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22839
+ Movie Create (6.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22840
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22841
+ Movie Update (6.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22842
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22843
+ Movie Create (6.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22844
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22845
+ Movie Update (6.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22846
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22847
+ Movie Create (6.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22848
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22849
+ Movie Update (6.5ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22850
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22851
+ Movie Load (6.1ms) #<MontageRails::Relation:0x007fbf9bce43e0>
22852
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22853
+ Movie Create (5.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22854
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22855
+ Movie Update (6.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22856
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22857
+ Movie Update (6.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22858
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22859
+ Movie Create (5.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22860
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22861
+ Movie Update (6.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22862
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22863
+ Movie Create (6.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22864
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22865
+ Movie Update (6.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22866
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22867
+ Movie Update (6.3ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22868
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22869
+ Movie Create (6.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22870
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 09:59:40 -0700
22871
+ Movie Update (7.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22872
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
22873
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
22874
+  (0.1ms) select sqlite_version(*)
22875
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
22876
+  (0.1ms) SELECT version FROM "schema_migrations"
22877
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
22878
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22879
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22880
+ Movie Load (27.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22881
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22882
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22883
+ Movie Load (6.6ms) {:filter=>{:title=>"Foo"}}
22884
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22885
+ Movie Load (6.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22886
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22887
+ Movie Load (6.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22888
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22889
+ Movie Load (7.7ms) {:filter=>{:votes__gt=>5}}
22890
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22891
+ Movie Load (6.1ms) {:filter=>{:votes__gt=>900000}}
22892
+ foo Load (0.0ms) bar
22893
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22894
+ Movie Load (7.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22895
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22896
+ Movie Load (6.3ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
22897
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22898
+ Movie Load (6.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
22899
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22900
+ Movie Load (6.4ms) {:filter=>{:title=>"The Jerk"}}
22901
+  (0.1ms) begin transaction
22902
+ --------------------------------------------------------------------------------------------
22903
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
22904
+ --------------------------------------------------------------------------------------------
22905
+  (0.1ms) rollback transaction
22906
+  (0.2ms) begin transaction
22907
+ ------------------------------------------------------------------------------------------------
22908
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
22909
+ ------------------------------------------------------------------------------------------------
22910
+  (0.1ms) rollback transaction
22911
+  (0.0ms) begin transaction
22912
+ ---------------------------------------------------------------------------------------
22913
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
22914
+ ---------------------------------------------------------------------------------------
22915
+  (0.0ms) rollback transaction
22916
+  (0.0ms) begin transaction
22917
+ --------------------------------------------------------------------------------------
22918
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
22919
+ --------------------------------------------------------------------------------------
22920
+  (0.1ms) rollback transaction
22921
+  (0.1ms) begin transaction
22922
+ ---------------------------------------------------------------------------------------------------------------
22923
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
22924
+ ---------------------------------------------------------------------------------------------------------------
22925
+  (0.1ms) rollback transaction
22926
+  (0.0ms) begin transaction
22927
+ -------------------------------------------------------------------------------------------
22928
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
22929
+ -------------------------------------------------------------------------------------------
22930
+  (0.0ms) rollback transaction
22931
+  (0.1ms) begin transaction
22932
+ --------------------------------------------------------------
22933
+ MontageRailsTest: test_: .configure should accept server url.
22934
+ --------------------------------------------------------------
22935
+  (0.1ms) rollback transaction
22936
+  (0.1ms) begin transaction
22937
+ -------------------------------------------------------------------------------------------------
22938
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
22939
+ -------------------------------------------------------------------------------------------------
22940
+  (0.1ms) rollback transaction
22941
+  (0.0ms) begin transaction
22942
+ -------------------------------------------------------------
22943
+ MontageRailsTest: test_: .configure should require a domain.
22944
+ -------------------------------------------------------------
22945
+  (0.0ms) rollback transaction
22946
+  (0.0ms) begin transaction
22947
+ ----------------------------------------------------------------------------------------------------
22948
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
22949
+ ----------------------------------------------------------------------------------------------------
22950
+  (0.1ms) rollback transaction
22951
+  (0.0ms) begin transaction
22952
+ ---------------------------------------------------------------------------------------
22953
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
22954
+ ---------------------------------------------------------------------------------------
22955
+  (0.1ms) rollback transaction
22956
+ foo Load (0.1ms) bar
22957
+ foo Load (0.0ms) bar
22958
+ foo Load (0.0ms) bar
22959
+ foo Load (0.0ms) bar
22960
+ foo Load [CACHE] (0.0ms) bar
22961
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22962
+ Movie Create (6.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22963
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22964
+ Movie Update (5.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22965
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22966
+ Movie Create (5.4ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22967
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22968
+ Movie Update (6.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22969
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22970
+ Movie Update (5.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22971
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22972
+ Movie Create (5.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22973
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22974
+ Movie Update (5.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22975
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22976
+ Movie Create (5.4ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22977
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22978
+ Movie Update (7.0ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22979
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22980
+ Movie Create (5.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22981
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:21 -0700
22982
+ Movie Update (5.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22983
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
22984
+ Movie Create (5.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22985
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
22986
+ Movie Update (6.5ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22987
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
22988
+ Movie Create (5.7ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22989
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
22990
+ Movie Update (5.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22991
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
22992
+ Movie Update (5.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>900, :year=>1983}
22993
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
22994
+ Movie Create (5.7ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22995
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
22996
+ Movie Update (6.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
22997
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
22998
+ Movie Update (5.2ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
22999
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23000
+ Movie Create (5.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23001
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23002
+ Movie Update (6.0ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23003
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23004
+ Movie Load (6.2ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
23005
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23006
+ Started POST "/montage_rails_mock/api/v1/schemas/studios/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23007
+ Studio Load (7.3ms) {:filter=>{:name=>"Universal"}, :limit=>1}
23008
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23009
+ Studio Load (7.2ms) 19442e09-5c2d-4e5d-8f34-675570e81414
23010
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23011
+ Studio Load (6.6ms) 19442e09-5c2d-4e5d-8f34-675570e81414
23012
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23013
+ Movie Load (6.1ms) #<MontageRails::Relation:0x007fb74fa26f80>
23014
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23015
+ Movie Load (6.0ms) {:filter=>{}}
23016
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23017
+ Movie Create (5.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23018
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23019
+ Movie Update (5.3ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23020
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23021
+ Movie Create (5.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23022
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23023
+ Movie Update (5.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23024
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23025
+ Movie Load (7.0ms) {:filter=>{}, :limit=>1}
23026
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23027
+ Actor Load (7.5ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
23028
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23029
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23030
+ Actor Load (7.0ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
23031
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23032
+ MontageRails::BaseTest::TestClass Load (8.0ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
23033
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23034
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23035
+ Actor Load (6.9ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
23036
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23037
+ Movie Load (6.3ms) {:filter=>{}, :limit=>1}
23038
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23039
+ Actor Load (6.8ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
23040
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23041
+ Actor Load (6.7ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
23042
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23043
+ Actor Load (6.7ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
23044
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23045
+ Movie Create (7.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23046
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23047
+ Movie Update (6.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23048
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23049
+ Movie Create (7.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23050
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23051
+ Movie Update (6.4ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23052
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23053
+ Movie Create (6.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23054
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23055
+ Movie Update (6.3ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23056
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23057
+ Movie Load (6.4ms) {:filter=>{}, :limit=>1}
23058
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23059
+ Actor Load (7.3ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
23060
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23061
+ Actor Load (7.2ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
23062
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23063
+ MontageRails::BaseTest::TestClass Load (7.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
23064
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23065
+ Movie Create (6.0ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23066
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23067
+ Movie Update (6.2ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23068
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23069
+ Movie Load (6.8ms) #<MontageRails::Relation:0x007fb74c3e4328>
23070
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23071
+ Movie Load (6.7ms) {:filter=>{}, :limit=>1}
23072
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23073
+ Actor Load (7.0ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
23074
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23075
+ Actor Load (7.3ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
23076
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23077
+ Actor Load (8.2ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}, :limit=>1}
23078
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23079
+ Movie Create (6.0ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23080
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23081
+ Movie Update (6.5ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23082
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23083
+ Movie Create (6.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23084
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-08-17 10:36:22 -0700
23085
+ Movie Update (6.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}