hashie_rails 0.0.1

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 (51) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +39 -0
  4. data/lib/hashie_rails.rb +3 -0
  5. data/lib/hashie_rails/hashie/mash.rb +18 -0
  6. data/lib/hashie_rails/version.rb +3 -0
  7. data/lib/tasks/hashie_rails_tasks.rake +4 -0
  8. data/test/dummy/README.rdoc +28 -0
  9. data/test/dummy/Rakefile +6 -0
  10. data/test/dummy/app/api/home_api.rb +8 -0
  11. data/test/dummy/app/assets/javascripts/application.js +13 -0
  12. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  13. data/test/dummy/app/controllers/application_controller.rb +5 -0
  14. data/test/dummy/app/helpers/application_helper.rb +2 -0
  15. data/test/dummy/app/models/bird.rb +2 -0
  16. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  17. data/test/dummy/bin/bundle +3 -0
  18. data/test/dummy/bin/rails +4 -0
  19. data/test/dummy/bin/rake +4 -0
  20. data/test/dummy/config.ru +4 -0
  21. data/test/dummy/config/application.rb +14 -0
  22. data/test/dummy/config/boot.rb +5 -0
  23. data/test/dummy/config/database.yml +25 -0
  24. data/test/dummy/config/environment.rb +5 -0
  25. data/test/dummy/config/environments/development.rb +37 -0
  26. data/test/dummy/config/environments/production.rb +83 -0
  27. data/test/dummy/config/environments/test.rb +39 -0
  28. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  29. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  30. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  31. data/test/dummy/config/initializers/inflections.rb +16 -0
  32. data/test/dummy/config/initializers/mime_types.rb +4 -0
  33. data/test/dummy/config/initializers/session_store.rb +3 -0
  34. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  35. data/test/dummy/config/locales/en.yml +23 -0
  36. data/test/dummy/config/routes.rb +3 -0
  37. data/test/dummy/config/secrets.yml +22 -0
  38. data/test/dummy/db/development.sqlite3 +0 -0
  39. data/test/dummy/db/migrate/20140531031058_create_birds.rb +9 -0
  40. data/test/dummy/db/schema.rb +22 -0
  41. data/test/dummy/db/test.sqlite3 +0 -0
  42. data/test/dummy/log/development.log +88 -0
  43. data/test/dummy/log/test.log +586 -0
  44. data/test/dummy/public/404.html +67 -0
  45. data/test/dummy/public/422.html +67 -0
  46. data/test/dummy/public/500.html +66 -0
  47. data/test/dummy/public/favicon.ico +0 -0
  48. data/test/hashie_rails_test.rb +16 -0
  49. data/test/integration/hashie_mash_with_active_record_test.rb +9 -0
  50. data/test/test_helper.rb +15 -0
  51. metadata +206 -0
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ mount HomeAPI => '/'
3
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 273622c9efda4594fa8677642ed08a19c029347489908095c58a196ab9e27e31b804f54238591cccc37c2bab974df200bcdbab6f91f8af2b32a2833f0716a4ed
15
+
16
+ test:
17
+ secret_key_base: a12bd583e267198d769d31f5d387e3b07c981ac8f29efce38ad60cfc5636053b7dac10b8e02764dace43138ab721230510f601931c3373ecee04d6b13b930224
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,9 @@
1
+ class CreateBirds < ActiveRecord::Migration
2
+ def change
3
+ create_table :birds do |t|
4
+ t.string :name
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,22 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20140531031058) do
15
+
16
+ create_table 'birds', force: true do |t|
17
+ t.string 'name'
18
+ t.datetime 'created_at'
19
+ t.datetime 'updated_at'
20
+ end
21
+
22
+ end
@@ -0,0 +1,88 @@
1
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateBirds (20140531031058)
6
+  (0.0ms) begin transaction
7
+  (0.2ms) CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
8
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140531031058"]]
9
+  (0.7ms) commit transaction
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+  (1.2ms) CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
12
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
13
+  (0.1ms) select sqlite_version(*)
14
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
15
+  (0.1ms) SELECT version FROM "schema_migrations"
16
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140531031058')
17
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
18
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19
+  (0.9ms) CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
20
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
21
+  (0.1ms) select sqlite_version(*)
22
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
23
+  (0.1ms) SELECT version FROM "schema_migrations"
24
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140531031058')
25
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
26
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
27
+  (1.1ms) CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
28
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
29
+  (0.0ms) select sqlite_version(*)
30
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
31
+  (0.1ms) SELECT version FROM "schema_migrations"
32
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140531031058')
33
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
34
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
35
+  (1.1ms) CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
36
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
37
+  (0.0ms) select sqlite_version(*)
38
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
39
+  (0.1ms) SELECT version FROM "schema_migrations"
40
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140531031058')
41
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
42
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
43
+  (1.0ms) CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
44
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
45
+  (0.0ms) select sqlite_version(*)
46
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
47
+  (0.1ms) SELECT version FROM "schema_migrations"
48
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140531031058')
49
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
50
+  (0.1ms) select sqlite_version(*)
51
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
52
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
53
+ Migrating to CreateBirds (20140531031058)
54
+  (0.1ms) begin transaction
55
+  (0.3ms) CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
56
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140531031058"]]
57
+  (0.7ms) commit transaction
58
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
59
+  (0.8ms) CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
60
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
61
+  (0.1ms) select sqlite_version(*)
62
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
63
+  (0.1ms) SELECT version FROM "schema_migrations"
64
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140531031058')
65
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
66
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
67
+  (11.0ms) CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
68
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
69
+  (0.0ms) select sqlite_version(*)
70
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
71
+  (0.1ms) SELECT version FROM "schema_migrations"
72
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140531031058')
73
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
74
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
75
+  (1.0ms) CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
76
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
77
+  (0.0ms) select sqlite_version(*)
78
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
79
+  (0.1ms) SELECT version FROM "schema_migrations"
80
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140531031058')
81
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
82
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
83
+  (1.0ms) CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
84
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
85
+  (0.0ms) select sqlite_version(*)
86
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
87
+  (0.1ms) SELECT version FROM "schema_migrations"
88
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140531031058')
@@ -0,0 +1,586 @@
1
+  (0.1ms) begin transaction
2
+ ---------------------------
3
+ HashieRailsTest: test_truth
4
+ ---------------------------
5
+  (0.0ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ ---------------------------
8
+ HashieRailsTest: test_truth
9
+ ---------------------------
10
+  (0.0ms) rollback transaction
11
+  (0.1ms) begin transaction
12
+ ---------------------------------------------------------------
13
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
14
+ ---------------------------------------------------------------
15
+  (0.1ms) rollback transaction
16
+  (0.1ms) begin transaction
17
+ ---------------------------
18
+ HashieRailsTest: test_truth
19
+ ---------------------------
20
+  (0.0ms) rollback transaction
21
+  (0.1ms) begin transaction
22
+ ---------------------------------------------------------------
23
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
24
+ ---------------------------------------------------------------
25
+  (0.0ms) rollback transaction
26
+  (0.1ms) begin transaction
27
+ ---------------------------
28
+ HashieRailsTest: test_truth
29
+ ---------------------------
30
+  (0.0ms) rollback transaction
31
+  (0.1ms) begin transaction
32
+ ---------------------------------------------------------------
33
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
34
+ ---------------------------------------------------------------
35
+  (0.0ms) rollback transaction
36
+  (0.1ms) begin transaction
37
+ ---------------------------
38
+ HashieRailsTest: test_truth
39
+ ---------------------------
40
+  (0.0ms) rollback transaction
41
+  (0.1ms) begin transaction
42
+ ---------------------------------------------------------------
43
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
44
+ ---------------------------------------------------------------
45
+  (0.1ms) rollback transaction
46
+  (0.1ms) begin transaction
47
+ ---------------------------------------------------------------
48
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
49
+ ---------------------------------------------------------------
50
+  (0.1ms) rollback transaction
51
+  (0.1ms) begin transaction
52
+ ---------------------------------------------------------------
53
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
54
+ ---------------------------------------------------------------
55
+  (0.1ms) rollback transaction
56
+  (0.1ms) begin transaction
57
+ ---------------------------------------------------------------
58
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
59
+ ---------------------------------------------------------------
60
+  (0.0ms) rollback transaction
61
+  (0.1ms) begin transaction
62
+ ---------------------------------------------------------------
63
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
64
+ ---------------------------------------------------------------
65
+  (0.2ms) rollback transaction
66
+  (0.1ms) begin transaction
67
+ ---------------------------------------------------------------
68
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
69
+ ---------------------------------------------------------------
70
+  (0.0ms) rollback transaction
71
+  (0.1ms) begin transaction
72
+ ---------------------------------------------------------------
73
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
74
+ ---------------------------------------------------------------
75
+  (0.0ms) rollback transaction
76
+  (0.1ms) begin transaction
77
+ ---------------------------------------------------------------
78
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
79
+ ---------------------------------------------------------------
80
+  (0.0ms) rollback transaction
81
+  (0.1ms) begin transaction
82
+ ---------------------------------------------------------------
83
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
84
+ ---------------------------------------------------------------
85
+  (0.0ms) rollback transaction
86
+  (0.1ms) begin transaction
87
+ ---------------------------------------------------------------
88
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
89
+ ---------------------------------------------------------------
90
+  (0.0ms) rollback transaction
91
+  (0.1ms) begin transaction
92
+ ---------------------------------------------------------------
93
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
94
+ ---------------------------------------------------------------
95
+  (0.1ms) rollback transaction
96
+  (0.1ms) begin transaction
97
+ ---------------------------------------------------------------
98
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
99
+ ---------------------------------------------------------------
100
+  (0.1ms) rollback transaction
101
+  (0.1ms) begin transaction
102
+ ---------------------------------------------------------------
103
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
104
+ ---------------------------------------------------------------
105
+  (0.1ms) rollback transaction
106
+  (0.1ms) begin transaction
107
+ ---------------------------------------------------------------
108
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
109
+ ---------------------------------------------------------------
110
+  (0.1ms) rollback transaction
111
+  (0.1ms) begin transaction
112
+ ---------------------------------------------------------------
113
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
114
+ ---------------------------------------------------------------
115
+  (0.1ms) rollback transaction
116
+  (0.1ms) begin transaction
117
+ ---------------------------------------------------------------
118
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
119
+ ---------------------------------------------------------------
120
+  (0.1ms) rollback transaction
121
+  (0.1ms) begin transaction
122
+ ---------------------------------------------------------------
123
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
124
+ ---------------------------------------------------------------
125
+  (0.1ms) rollback transaction
126
+  (0.1ms) begin transaction
127
+ ---------------------------------------------------------------
128
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
129
+ ---------------------------------------------------------------
130
+  (0.1ms) rollback transaction
131
+  (0.1ms) begin transaction
132
+ ---------------------------------------------------------------
133
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
134
+ ---------------------------------------------------------------
135
+  (0.1ms) rollback transaction
136
+  (0.1ms) begin transaction
137
+ ---------------------------------------------------------------
138
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
139
+ ---------------------------------------------------------------
140
+  (0.1ms) rollback transaction
141
+  (0.1ms) begin transaction
142
+ ---------------------------------------------------------------
143
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
144
+ ---------------------------------------------------------------
145
+  (0.1ms) rollback transaction
146
+  (0.1ms) begin transaction
147
+ ---------------------------------------------------------------
148
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
149
+ ---------------------------------------------------------------
150
+  (0.1ms) rollback transaction
151
+  (0.1ms) begin transaction
152
+ ---------------------------------------------------------------
153
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
154
+ ---------------------------------------------------------------
155
+  (0.1ms) rollback transaction
156
+  (0.1ms) begin transaction
157
+ ---------------------------------------------------------------
158
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
159
+ ---------------------------------------------------------------
160
+  (0.1ms) rollback transaction
161
+  (0.1ms) begin transaction
162
+ ---------------------------------------------------------------
163
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
164
+ ---------------------------------------------------------------
165
+  (0.1ms) rollback transaction
166
+  (0.1ms) begin transaction
167
+ ---------------------------------------------------------------
168
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
169
+ ---------------------------------------------------------------
170
+  (0.0ms) rollback transaction
171
+  (0.1ms) begin transaction
172
+ ---------------------------------------------------------------
173
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
174
+ ---------------------------------------------------------------
175
+  (0.0ms) rollback transaction
176
+  (0.1ms) begin transaction
177
+ ---------------------------------------------------------------
178
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
179
+ ---------------------------------------------------------------
180
+  (0.0ms) rollback transaction
181
+  (0.1ms) begin transaction
182
+ ---------------------------------------------------------------
183
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
184
+ ---------------------------------------------------------------
185
+  (0.0ms) rollback transaction
186
+  (0.1ms) begin transaction
187
+ ---------------------------------------------------------------
188
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
189
+ ---------------------------------------------------------------
190
+  (0.1ms) rollback transaction
191
+  (0.1ms) begin transaction
192
+ ---------------------------------------------------------------
193
+ HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
194
+ ---------------------------------------------------------------
195
+  (0.0ms) rollback transaction
196
+  (0.1ms) begin transaction
197
+ -----------------------------------------------------
198
+ HashieRailsTest: test_mash_does_not_handle_permitted?
199
+ -----------------------------------------------------
200
+  (0.0ms) rollback transaction
201
+  (0.0ms) begin transaction
202
+ ---------------------------------------------------------
203
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
204
+ ---------------------------------------------------------
205
+  (0.0ms) rollback transaction
206
+  (0.1ms) begin transaction
207
+ -----------------------------------------------------
208
+ HashieRailsTest: test_mash_does_not_handle_permitted?
209
+ -----------------------------------------------------
210
+  (0.0ms) rollback transaction
211
+  (0.0ms) begin transaction
212
+ ---------------------------------------------------------
213
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
214
+ ---------------------------------------------------------
215
+  (0.0ms) rollback transaction
216
+  (0.1ms) begin transaction
217
+ ------------------------------------------------------------
218
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
219
+ ------------------------------------------------------------
220
+  (0.0ms) rollback transaction
221
+  (0.1ms) begin transaction
222
+ ---------------------------------------------------------
223
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
224
+ ---------------------------------------------------------
225
+  (0.0ms) rollback transaction
226
+  (0.1ms) begin transaction
227
+ ------------------------------------------------------------
228
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
229
+ ------------------------------------------------------------
230
+  (0.0ms) rollback transaction
231
+  (0.1ms) begin transaction
232
+ ---------------------------------------------------------
233
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
234
+ ---------------------------------------------------------
235
+  (0.1ms) rollback transaction
236
+  (0.1ms) begin transaction
237
+ ------------------------------------------------------------
238
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
239
+ ------------------------------------------------------------
240
+  (0.0ms) rollback transaction
241
+  (0.1ms) begin transaction
242
+ ---------------------------------------------------------
243
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
244
+ ---------------------------------------------------------
245
+  (0.1ms) rollback transaction
246
+  (0.1ms) begin transaction
247
+ --------------------------------------------------------------
248
+ HashieMashWithActiveRecord: test_bird_can_be_created_with_mash
249
+ --------------------------------------------------------------
250
+  (0.0ms) rollback transaction
251
+  (0.0ms) begin transaction
252
+ ------------------------------------------------------------
253
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
254
+ ------------------------------------------------------------
255
+  (0.0ms) rollback transaction
256
+  (0.0ms) begin transaction
257
+ ---------------------------------------------------------
258
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
259
+ ---------------------------------------------------------
260
+  (0.1ms) rollback transaction
261
+  (0.1ms) begin transaction
262
+ ------------------------------------------------------------
263
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
264
+ ------------------------------------------------------------
265
+  (0.0ms) rollback transaction
266
+  (0.0ms) begin transaction
267
+ ---------------------------------------------------------
268
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
269
+ ---------------------------------------------------------
270
+  (0.1ms) rollback transaction
271
+  (0.0ms) begin transaction
272
+ ------------------------------------------------------------------
273
+ HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
274
+ ------------------------------------------------------------------
275
+  (0.0ms) rollback transaction
276
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
277
+  (0.1ms) begin transaction
278
+ ------------------------------------------------------------------
279
+ HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
280
+ ------------------------------------------------------------------
281
+  (0.1ms) SELECT COUNT(*) FROM "birds"
282
+ Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:19:53 +1000
283
+  (0.1ms) rollback transaction
284
+  (0.0ms) begin transaction
285
+ ------------------------------------------------------------
286
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
287
+ ------------------------------------------------------------
288
+  (0.0ms) rollback transaction
289
+  (0.0ms) begin transaction
290
+ ---------------------------------------------------------
291
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
292
+ ---------------------------------------------------------
293
+  (0.1ms) rollback transaction
294
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
295
+  (0.1ms) begin transaction
296
+ ------------------------------------------------------------
297
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
298
+ ------------------------------------------------------------
299
+  (0.0ms) rollback transaction
300
+  (0.0ms) begin transaction
301
+ ---------------------------------------------------------
302
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
303
+ ---------------------------------------------------------
304
+  (0.0ms) rollback transaction
305
+  (0.0ms) begin transaction
306
+ ------------------------------------------------------------------
307
+ HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
308
+ ------------------------------------------------------------------
309
+  (0.1ms) SELECT COUNT(*) FROM "birds"
310
+ Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:20:23 +1000
311
+  (0.1ms) rollback transaction
312
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
313
+  (0.1ms) begin transaction
314
+ ------------------------------------------------------------
315
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
316
+ ------------------------------------------------------------
317
+  (0.0ms) rollback transaction
318
+  (0.0ms) begin transaction
319
+ ---------------------------------------------------------
320
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
321
+ ---------------------------------------------------------
322
+  (0.0ms) rollback transaction
323
+  (0.0ms) begin transaction
324
+ ------------------------------------------------------------------
325
+ HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
326
+ ------------------------------------------------------------------
327
+  (0.1ms) SELECT COUNT(*) FROM "birds"
328
+ Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:21:35 +1000
329
+  (0.1ms) SAVEPOINT active_record_1
330
+ SQL (0.8ms) INSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-05-31 03:21:35.823798"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:21:35.823798"]]
331
+  (0.1ms) RELEASE SAVEPOINT active_record_1
332
+  (0.1ms) SELECT COUNT(*) FROM "birds"
333
+  (0.5ms) rollback transaction
334
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
335
+  (0.1ms) begin transaction
336
+ ------------------------------------------------------------
337
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
338
+ ------------------------------------------------------------
339
+  (0.0ms) rollback transaction
340
+  (0.0ms) begin transaction
341
+ ---------------------------------------------------------
342
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
343
+ ---------------------------------------------------------
344
+  (0.2ms) rollback transaction
345
+  (0.0ms) begin transaction
346
+ ------------------------------------------------------------------
347
+ HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
348
+ ------------------------------------------------------------------
349
+  (0.1ms) SELECT COUNT(*) FROM "birds"
350
+ Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:21:52 +1000
351
+  (0.1ms) rollback transaction
352
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
353
+  (0.1ms) begin transaction
354
+ ------------------------------------------------------------------
355
+ HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
356
+ ------------------------------------------------------------------
357
+  (0.1ms) SELECT COUNT(*) FROM "birds"
358
+ Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:22:01 +1000
359
+  (0.1ms) SAVEPOINT active_record_1
360
+ SQL (0.4ms) INSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-05-31 03:22:01.529273"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:22:01.529273"]]
361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
362
+  (0.1ms) SELECT COUNT(*) FROM "birds"
363
+  (1.6ms) rollback transaction
364
+  (0.0ms) begin transaction
365
+ ------------------------------------------------------------
366
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
367
+ ------------------------------------------------------------
368
+  (0.0ms) rollback transaction
369
+  (0.0ms) begin transaction
370
+ ---------------------------------------------------------
371
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
372
+ ---------------------------------------------------------
373
+  (0.0ms) rollback transaction
374
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
375
+  (0.1ms) begin transaction
376
+ ------------------------------------------------------------
377
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
378
+ ------------------------------------------------------------
379
+  (0.0ms) rollback transaction
380
+  (0.0ms) begin transaction
381
+ ---------------------------------------------------------
382
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
383
+ ---------------------------------------------------------
384
+  (0.0ms) rollback transaction
385
+  (0.0ms) begin transaction
386
+ ------------------------------------------------------------------
387
+ HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
388
+ ------------------------------------------------------------------
389
+  (0.1ms) SELECT COUNT(*) FROM "birds"
390
+ Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:22:59 +1000
391
+  (0.1ms) SAVEPOINT active_record_1
392
+ SQL (0.4ms) INSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-05-31 03:22:59.287102"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:22:59.287102"]]
393
+  (0.0ms) RELEASE SAVEPOINT active_record_1
394
+  (0.1ms) SELECT COUNT(*) FROM "birds"
395
+  (1.8ms) rollback transaction
396
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
397
+  (0.1ms) begin transaction
398
+ ------------------------------------------------------------
399
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
400
+ ------------------------------------------------------------
401
+  (0.0ms) rollback transaction
402
+  (0.0ms) begin transaction
403
+ ---------------------------------------------------------
404
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
405
+ ---------------------------------------------------------
406
+  (0.0ms) rollback transaction
407
+  (0.0ms) begin transaction
408
+ ------------------------------------------------------------------
409
+ HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
410
+ ------------------------------------------------------------------
411
+  (0.1ms) SELECT COUNT(*) FROM "birds"
412
+ Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:26:59 +1000
413
+  (0.1ms) SAVEPOINT active_record_1
414
+ SQL (0.3ms) INSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-05-31 03:26:59.527998"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:26:59.527998"]]
415
+  (0.0ms) RELEASE SAVEPOINT active_record_1
416
+  (0.1ms) SELECT COUNT(*) FROM "birds"
417
+  (1.7ms) rollback transaction
418
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
419
+  (0.1ms) begin transaction
420
+ ------------------------------------------------------------------
421
+ HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
422
+ ------------------------------------------------------------------
423
+  (0.1ms) SELECT COUNT(*) FROM "birds"
424
+ Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:27:14 +1000
425
+  (0.1ms) SAVEPOINT active_record_1
426
+ SQL (0.3ms) INSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-05-31 03:27:14.500410"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:27:14.500410"]]
427
+  (0.0ms) RELEASE SAVEPOINT active_record_1
428
+  (0.1ms) SELECT COUNT(*) FROM "birds"
429
+  (2.0ms) rollback transaction
430
+  (0.1ms) begin transaction
431
+ ------------------------------------------------------------
432
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
433
+ ------------------------------------------------------------
434
+  (0.0ms) rollback transaction
435
+  (0.0ms) begin transaction
436
+ ---------------------------------------------------------
437
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
438
+ ---------------------------------------------------------
439
+  (0.1ms) rollback transaction
440
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
441
+  (0.1ms) begin transaction
442
+ ------------------------------------------------------------------
443
+ HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
444
+ ------------------------------------------------------------------
445
+  (0.1ms) SELECT COUNT(*) FROM "birds"
446
+ Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:27:18 +1000
447
+  (0.1ms) SAVEPOINT active_record_1
448
+ SQL (0.5ms) INSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-05-31 03:27:18.245748"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:27:18.245748"]]
449
+  (0.1ms) RELEASE SAVEPOINT active_record_1
450
+  (0.1ms) SELECT COUNT(*) FROM "birds"
451
+  (1.8ms) rollback transaction
452
+  (0.1ms) begin transaction
453
+ ------------------------------------------------------------
454
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
455
+ ------------------------------------------------------------
456
+  (0.1ms) rollback transaction
457
+  (0.1ms) begin transaction
458
+ ---------------------------------------------------------
459
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
460
+ ---------------------------------------------------------
461
+  (0.1ms) rollback transaction
462
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
463
+  (0.1ms) begin transaction
464
+ ------------------------------------------------------------------
465
+ HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
466
+ ------------------------------------------------------------------
467
+  (0.1ms) SELECT COUNT(*) FROM "birds"
468
+ Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:27:47 +1000
469
+  (0.1ms) SAVEPOINT active_record_1
470
+ SQL (0.3ms) INSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-05-31 03:27:47.800489"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:27:47.800489"]]
471
+  (0.0ms) RELEASE SAVEPOINT active_record_1
472
+  (0.1ms) SELECT COUNT(*) FROM "birds"
473
+  (1.7ms) rollback transaction
474
+  (0.0ms) begin transaction
475
+ ------------------------------------------------------------
476
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
477
+ ------------------------------------------------------------
478
+  (0.0ms) rollback transaction
479
+  (0.0ms) begin transaction
480
+ ---------------------------------------------------------
481
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
482
+ ---------------------------------------------------------
483
+  (0.0ms) rollback transaction
484
+  (0.1ms) begin transaction
485
+ ------------------------------------------------------------
486
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
487
+ ------------------------------------------------------------
488
+  (0.0ms) rollback transaction
489
+  (0.0ms) begin transaction
490
+ ---------------------------------------------------------
491
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
492
+ ---------------------------------------------------------
493
+  (0.0ms) rollback transaction
494
+  (0.0ms) begin transaction
495
+ ------------------------------------------------------------------
496
+ HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
497
+ ------------------------------------------------------------------
498
+  (0.0ms) rollback transaction
499
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
500
+  (0.1ms) begin transaction
501
+ ------------------------------------------------------------
502
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
503
+ ------------------------------------------------------------
504
+  (0.0ms) rollback transaction
505
+  (0.0ms) begin transaction
506
+ ---------------------------------------------------------
507
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
508
+ ---------------------------------------------------------
509
+  (0.0ms) rollback transaction
510
+  (0.0ms) begin transaction
511
+ ------------------------------------------------------------------
512
+ HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
513
+ ------------------------------------------------------------------
514
+  (0.1ms) SELECT COUNT(*) FROM "birds"
515
+ Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:28:29 +1000
516
+  (0.1ms) SAVEPOINT active_record_1
517
+ SQL (0.4ms) INSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-05-31 03:28:29.322493"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:28:29.322493"]]
518
+  (0.1ms) RELEASE SAVEPOINT active_record_1
519
+  (0.1ms) SELECT COUNT(*) FROM "birds"
520
+  (1.7ms) rollback transaction
521
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
522
+  (0.1ms) begin transaction
523
+ ------------------------------------------------------------------
524
+ HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
525
+ ------------------------------------------------------------------
526
+  (0.1ms) SELECT COUNT(*) FROM "birds"
527
+ Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:43:03 +1000
528
+  (0.1ms) SAVEPOINT active_record_1
529
+ SQL (0.3ms) INSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-05-31 03:43:03.490867"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:43:03.490867"]]
530
+  (0.0ms) RELEASE SAVEPOINT active_record_1
531
+  (0.1ms) SELECT COUNT(*) FROM "birds"
532
+  (1.9ms) rollback transaction
533
+  (0.1ms) begin transaction
534
+ ------------------------------------------------------------
535
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
536
+ ------------------------------------------------------------
537
+  (0.0ms) rollback transaction
538
+  (0.0ms) begin transaction
539
+ ---------------------------------------------------------
540
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
541
+ ---------------------------------------------------------
542
+  (0.0ms) rollback transaction
543
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
544
+  (0.1ms) begin transaction
545
+ ------------------------------------------------------------
546
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
547
+ ------------------------------------------------------------
548
+  (0.0ms) rollback transaction
549
+  (0.1ms) begin transaction
550
+ ---------------------------------------------------------
551
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
552
+ ---------------------------------------------------------
553
+  (0.0ms) rollback transaction
554
+  (0.0ms) begin transaction
555
+ ------------------------------------------------------------------
556
+ HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
557
+ ------------------------------------------------------------------
558
+  (0.1ms) SELECT COUNT(*) FROM "birds"
559
+ Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:43:07 +1000
560
+  (0.1ms) SAVEPOINT active_record_1
561
+ SQL (0.3ms) INSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-05-31 03:43:07.923120"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:43:07.923120"]]
562
+  (0.0ms) RELEASE SAVEPOINT active_record_1
563
+  (0.1ms) SELECT COUNT(*) FROM "birds"
564
+  (1.7ms) rollback transaction
565
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
566
+  (0.1ms) begin transaction
567
+ ------------------------------------------------------------
568
+ HashieRailsTest: test_mash_does_not_handle_permitted?_method
569
+ ------------------------------------------------------------
570
+  (0.0ms) rollback transaction
571
+  (0.0ms) begin transaction
572
+ ---------------------------------------------------------
573
+ HashieRailsTest: test_mash_does_not_respond_to_permitted?
574
+ ---------------------------------------------------------
575
+  (0.0ms) rollback transaction
576
+  (0.0ms) begin transaction
577
+ ------------------------------------------------------------------
578
+ HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
579
+ ------------------------------------------------------------------
580
+  (0.1ms) SELECT COUNT(*) FROM "birds"
581
+ Started POST "/birds" for 127.0.0.1 at 2014-06-04 11:50:44 +1000
582
+  (0.1ms) SAVEPOINT active_record_1
583
+ SQL (0.4ms) INSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-04 01:50:44.319876"], ["name", "Birdie"], ["updated_at", "2014-06-04 01:50:44.319876"]]
584
+  (0.0ms) RELEASE SAVEPOINT active_record_1
585
+  (0.1ms) SELECT COUNT(*) FROM "birds"
586
+  (0.3ms) rollback transaction