property_sets 0.0.6

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.
@@ -0,0 +1,4 @@
1
+ account1_foo:
2
+ account_id: 1
3
+ name: foo
4
+ value:
@@ -0,0 +1,3 @@
1
+ account1:
2
+ name: The Account
3
+ id: 1
@@ -0,0 +1,33 @@
1
+ require 'rubygems'
2
+ require 'test/unit'
3
+ require 'active_support'
4
+ require 'active_record'
5
+ require 'active_record/fixtures'
6
+ require 'shoulda'
7
+
8
+ ActiveRecord::Base.configurations = YAML::load(IO.read(File.dirname(__FILE__) + '/database.yml'))
9
+ ActiveRecord::Base.establish_connection('test')
10
+ ActiveRecord::Base.logger = Logger.new(File.dirname(__FILE__) + "/test.log")
11
+
12
+ load(File.dirname(__FILE__) + "/schema.rb")
13
+
14
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
15
+ require 'property_sets'
16
+
17
+ class ActiveSupport::TestCase
18
+ include ActiveRecord::TestFixtures
19
+
20
+ def create_fixtures(*table_names)
21
+ if block_given?
22
+ Fixtures.create_fixtures(Test::Unit::TestCase.fixture_path, table_names) { yield }
23
+ else
24
+ Fixtures.create_fixtures(Test::Unit::TestCase.fixture_path, table_names)
25
+ end
26
+ end
27
+
28
+ self.use_transactional_fixtures = true
29
+ self.use_instantiated_fixtures = false
30
+ end
31
+
32
+ ActiveSupport::TestCase.fixture_path = File.dirname(__FILE__) + "/fixtures/"
33
+ $LOAD_PATH.unshift(ActiveSupport::TestCase.fixture_path)
@@ -0,0 +1,23 @@
1
+ ActiveRecord::Schema.define(:version => 1) do
2
+ create_table "account_settings", :force => true do |t|
3
+ t.integer "account_id"
4
+ t.string "name"
5
+ t.string "value"
6
+ t.datetime "created_at"
7
+ t.datetime "updated_at"
8
+ end
9
+
10
+ create_table "account_texts", :force => true do |t|
11
+ t.integer "account_id"
12
+ t.string "name"
13
+ t.string "value"
14
+ t.datetime "created_at"
15
+ t.datetime "updated_at"
16
+ end
17
+
18
+ create_table "accounts", :force => true do |t|
19
+ t.string "name"
20
+ t.datetime "created_at"
21
+ t.datetime "updated_at"
22
+ end
23
+ end
@@ -0,0 +1,3672 @@
1
+ # Logfile created on Mon Jan 10 13:33:46 -0800 2011 by logger.rb
2
+ SQL (0.2ms) SET NAMES 'utf8'
3
+ SQL (0.1ms) SET SQL_AUTO_IS_NULL=0
4
+ SQL (0.3ms) SHOW TABLES
5
+ SQL (12.6ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
6
+ SQL (0.4ms) SHOW TABLES
7
+ SQL (11.8ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
8
+ SQL (0.3ms) SHOW TABLES
9
+ SQL (9.4ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
10
+ SQL (0.3ms) SHOW KEYS FROM `schema_migrations`
11
+ SQL (10.7ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
12
+ SQL (0.4ms) SHOW TABLES
13
+ SQL (0.4ms) SELECT version FROM `schema_migrations`
14
+ SQL (0.4ms) INSERT INTO `schema_migrations` (version) VALUES ('1')
15
+ SQL (0.2ms) SET NAMES 'utf8'
16
+ SQL (0.1ms) SET SQL_AUTO_IS_NULL=0
17
+ SQL (1.2ms) SHOW TABLES
18
+ SQL (1.6ms) DROP TABLE `account_settings`
19
+ SQL (71.1ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
20
+ SQL (0.4ms) SHOW TABLES
21
+ SQL (0.8ms) DROP TABLE `accounts`
22
+ SQL (14.0ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
23
+ SQL (0.4ms) SHOW TABLES
24
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
25
+ SQL (0.1ms) SET NAMES 'utf8'
26
+ SQL (0.1ms) SET SQL_AUTO_IS_NULL=0
27
+ SQL (0.3ms) SHOW TABLES
28
+ SQL (0.8ms) DROP TABLE `account_settings`
29
+ SQL (170.9ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
30
+ SQL (0.5ms) SHOW TABLES
31
+ SQL (1.2ms) DROP TABLE `accounts`
32
+ SQL (19.2ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
33
+ SQL (0.3ms) SHOW TABLES
34
+ SQL (0.2ms) SELECT version FROM `schema_migrations`
35
+ SQL (0.2ms) SET NAMES 'utf8'
36
+ SQL (0.1ms) SET SQL_AUTO_IS_NULL=0
37
+ SQL (0.3ms) SHOW TABLES
38
+ SQL (0.8ms) DROP TABLE `account_settings`
39
+ SQL (246.9ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
40
+ SQL (0.4ms) SHOW TABLES
41
+ SQL (0.9ms) DROP TABLE `accounts`
42
+ SQL (17.9ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
43
+ SQL (0.4ms) SHOW TABLES
44
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
45
+ SQL (0.1ms) SET NAMES 'utf8'
46
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
47
+ SQL (0.4ms) SHOW TABLES
48
+ SQL (1.0ms) DROP TABLE `account_settings`
49
+ SQL (41.3ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
50
+ SQL (0.3ms) SHOW TABLES
51
+ SQL (0.8ms) DROP TABLE `accounts`
52
+ SQL (20.7ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
53
+ SQL (0.3ms) SHOW TABLES
54
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
55
+ SQL (0.2ms) SET NAMES 'utf8'
56
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
57
+ SQL (0.3ms) SHOW TABLES
58
+ SQL (1.0ms) DROP TABLE `account_settings`
59
+ SQL (181.5ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
60
+ SQL (0.4ms) SHOW TABLES
61
+ SQL (1.0ms) DROP TABLE `accounts`
62
+ SQL (11.4ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
63
+ SQL (0.4ms) SHOW TABLES
64
+ SQL (0.2ms) SELECT version FROM `schema_migrations`
65
+ SQL (0.2ms) SET NAMES 'utf8'
66
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
67
+ SQL (0.3ms) SHOW TABLES
68
+ SQL (0.8ms) DROP TABLE `account_settings`
69
+ SQL (13.9ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
70
+ SQL (0.4ms) SHOW TABLES
71
+ SQL (0.9ms) DROP TABLE `accounts`
72
+ SQL (12.5ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
73
+ SQL (0.3ms) SHOW TABLES
74
+ SQL (0.2ms) SELECT version FROM `schema_migrations`
75
+ SQL (0.4ms) SHOW TABLES
76
+ AccountSettings Columns (1.1ms) SHOW FIELDS FROM `account_settings`
77
+ SQL (0.3ms) SET NAMES 'utf8'
78
+ SQL (0.1ms) SET SQL_AUTO_IS_NULL=0
79
+ SQL (0.3ms) SHOW TABLES
80
+ SQL (2.2ms) DROP TABLE `account_settings`
81
+ SQL (11.5ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
82
+ SQL (0.5ms) SHOW TABLES
83
+ SQL (1.1ms) DROP TABLE `accounts`
84
+ SQL (11.2ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
85
+ SQL (0.3ms) SHOW TABLES
86
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
87
+ SQL (0.4ms) SHOW TABLES
88
+ AccountSettings Columns (1.1ms) SHOW FIELDS FROM `account_settings`
89
+ SQL (0.1ms) SET NAMES 'utf8'
90
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
91
+ SQL (0.9ms) SHOW TABLES
92
+ SQL (1.7ms) DROP TABLE `account_settings`
93
+ SQL (35.4ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
94
+ SQL (0.3ms) SHOW TABLES
95
+ SQL (0.8ms) DROP TABLE `accounts`
96
+ SQL (20.2ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
97
+ SQL (0.3ms) SHOW TABLES
98
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
99
+ SQL (0.4ms) SHOW TABLES
100
+ AccountSettings Columns (2.2ms) SHOW FIELDS FROM `account_settings`
101
+ SQL (0.2ms) SET NAMES 'utf8'
102
+ SQL (0.1ms) SET SQL_AUTO_IS_NULL=0
103
+ SQL (0.4ms) SHOW TABLES
104
+ SQL (1.1ms) DROP TABLE `account_settings`
105
+ SQL (10.1ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
106
+ SQL (0.3ms) SHOW TABLES
107
+ SQL (0.8ms) DROP TABLE `accounts`
108
+ SQL (10.7ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
109
+ SQL (0.3ms) SHOW TABLES
110
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
111
+ SQL (0.4ms) SHOW TABLES
112
+ AccountSettings Columns (1.3ms) SHOW FIELDS FROM `account_settings`
113
+ SQL (0.1ms) SET NAMES 'utf8'
114
+ SQL (0.1ms) SET SQL_AUTO_IS_NULL=0
115
+ SQL (0.3ms) SHOW TABLES
116
+ SQL (2.2ms) DROP TABLE `account_settings`
117
+ SQL (11.8ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
118
+ SQL (0.4ms) SHOW TABLES
119
+ SQL (1.1ms) DROP TABLE `accounts`
120
+ SQL (11.4ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
121
+ SQL (0.3ms) SHOW TABLES
122
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
123
+ SQL (0.5ms) SHOW TABLES
124
+ Account Columns (1.1ms) SHOW FIELDS FROM `accounts`
125
+ Unable to load account, underlying cause no such file to load -- account.rb
126
+
127
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
128
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
129
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
130
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
131
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
132
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
133
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
134
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
135
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
136
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
137
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
138
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
139
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
140
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
141
+ ./test/test_property_sets.rb:15:in `__bind_1294696399_958336'
142
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
143
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
144
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
145
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
146
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
147
+ ./test/test_property_sets.rb:14
148
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
149
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
150
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
151
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
152
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
153
+
154
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
155
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
156
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
157
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
158
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
159
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
160
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
161
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
162
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
163
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
164
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
165
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
166
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
167
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
168
+ ./test/test_property_sets.rb:15:in `__bind_1294696399_958336'
169
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
170
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
171
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
172
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
173
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
174
+ ./test/test_property_sets.rb:14
175
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
176
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
177
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
178
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
179
+ SQL (0.0ms) BEGIN
180
+ SQL (0.1ms) SAVEPOINT active_record_1
181
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:53:20', '2011-01-10 13:53:20')
182
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
183
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
184
+ SQL (0.3ms) ROLLBACK
185
+ SQL (0.0ms) BEGIN
186
+ SQL (0.0ms) SAVEPOINT active_record_1
187
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:53:20', '2011-01-10 13:53:20')
188
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
189
+ AccountSettings Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
190
+ SQL (0.3ms) ROLLBACK
191
+ SQL (0.0ms) BEGIN
192
+ SQL (0.0ms) SAVEPOINT active_record_1
193
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:53:20', '2011-01-10 13:53:20')
194
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
195
+ AccountSettings Columns (1.1ms) SHOW FIELDS FROM `account_settings`
196
+ SQL (0.2ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
197
+ SQL (0.3ms) ROLLBACK
198
+ SQL (0.0ms) BEGIN
199
+ SQL (0.0ms) SAVEPOINT active_record_1
200
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:53:20', '2011-01-10 13:53:20')
201
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
202
+ AccountSettings Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
203
+ SQL (0.3ms) ROLLBACK
204
+ SQL (0.1ms) BEGIN
205
+ SQL (0.1ms) SAVEPOINT active_record_1
206
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:53:20', '2011-01-10 13:53:20')
207
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
208
+ SQL (0.5ms) ROLLBACK
209
+ SQL (0.0ms) BEGIN
210
+ SQL (0.1ms) SAVEPOINT active_record_1
211
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:53:20', '2011-01-10 13:53:20')
212
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
213
+ SQL (0.3ms) ROLLBACK
214
+ SQL (0.1ms) BEGIN
215
+ SQL (0.2ms) SAVEPOINT active_record_1
216
+ Account Create (0.4ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:53:20', '2011-01-10 13:53:20')
217
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
218
+ SQL (0.5ms) ROLLBACK
219
+ SQL (0.2ms) SET NAMES 'utf8'
220
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
221
+ SQL (0.3ms) SHOW TABLES
222
+ SQL (2.4ms) DROP TABLE `account_settings`
223
+ SQL (10.5ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
224
+ SQL (0.5ms) SHOW TABLES
225
+ SQL (1.1ms) DROP TABLE `accounts`
226
+ SQL (10.9ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
227
+ SQL (0.3ms) SHOW TABLES
228
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
229
+ SQL (0.4ms) SHOW TABLES
230
+ Account Columns (1.3ms) SHOW FIELDS FROM `accounts`
231
+ Unable to load account, underlying cause no such file to load -- account.rb
232
+
233
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
234
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
235
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
236
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
237
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
238
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
239
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
240
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
241
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
242
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
243
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
244
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
245
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
246
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
247
+ ./test/test_property_sets.rb:15:in `__bind_1294696469_533773'
248
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
249
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
250
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
251
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
252
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
253
+ ./test/test_property_sets.rb:14
254
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
255
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
256
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
257
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
258
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
259
+
260
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
261
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
262
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
263
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
264
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
265
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
266
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
267
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
268
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
269
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
270
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
271
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
272
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
273
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
274
+ ./test/test_property_sets.rb:15:in `__bind_1294696469_533773'
275
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
276
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
277
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
278
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
279
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
280
+ ./test/test_property_sets.rb:14
281
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
282
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
283
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
284
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
285
+ SQL (0.0ms) BEGIN
286
+ SQL (0.1ms) SAVEPOINT active_record_1
287
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:54:29', '2011-01-10 13:54:29')
288
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
289
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
290
+ SQL (0.4ms) ROLLBACK
291
+ SQL (0.1ms) BEGIN
292
+ SQL (0.1ms) SAVEPOINT active_record_1
293
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:54:29', '2011-01-10 13:54:29')
294
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
295
+ AccountSettings Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
296
+ SQL (0.3ms) ROLLBACK
297
+ SQL (0.0ms) BEGIN
298
+ SQL (0.0ms) SAVEPOINT active_record_1
299
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:54:29', '2011-01-10 13:54:29')
300
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
301
+ AccountSettings Columns (1.1ms) SHOW FIELDS FROM `account_settings`
302
+ SQL (0.1ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
303
+ SQL (0.3ms) ROLLBACK
304
+ SQL (0.1ms) BEGIN
305
+ SQL (0.1ms) SAVEPOINT active_record_1
306
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:54:29', '2011-01-10 13:54:29')
307
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
308
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
309
+ SQL (0.3ms) ROLLBACK
310
+ SQL (0.0ms) BEGIN
311
+ SQL (0.0ms) SAVEPOINT active_record_1
312
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:54:29', '2011-01-10 13:54:29')
313
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
314
+ SQL (0.4ms) ROLLBACK
315
+ SQL (0.1ms) BEGIN
316
+ SQL (0.1ms) SAVEPOINT active_record_1
317
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:54:29', '2011-01-10 13:54:29')
318
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
319
+ SQL (0.3ms) ROLLBACK
320
+ SQL (0.0ms) BEGIN
321
+ SQL (0.0ms) SAVEPOINT active_record_1
322
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:54:29', '2011-01-10 13:54:29')
323
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
324
+ SQL (0.4ms) ROLLBACK
325
+ SQL (0.1ms) SET NAMES 'utf8'
326
+ SQL (0.1ms) SET SQL_AUTO_IS_NULL=0
327
+ SQL (0.3ms) SHOW TABLES
328
+ SQL (0.9ms) DROP TABLE `account_settings`
329
+ SQL (162.9ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
330
+ SQL (0.4ms) SHOW TABLES
331
+ SQL (1.1ms) DROP TABLE `accounts`
332
+ SQL (11.4ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
333
+ SQL (0.4ms) SHOW TABLES
334
+ SQL (0.2ms) SELECT version FROM `schema_migrations`
335
+ SQL (0.4ms) SHOW TABLES
336
+ Account Columns (1.0ms) SHOW FIELDS FROM `accounts`
337
+ Unable to load account, underlying cause no such file to load -- account.rb
338
+
339
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
340
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
341
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
342
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
343
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
344
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
345
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
346
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
347
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
348
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
349
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
350
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
351
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
352
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
353
+ ./test/test_property_sets.rb:15:in `__bind_1294696496_718789'
354
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
355
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
356
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
357
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
358
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
359
+ ./test/test_property_sets.rb:14
360
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
361
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
362
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
363
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
364
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
365
+
366
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
367
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
368
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
369
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
370
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
371
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
372
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
373
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
374
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
375
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
376
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
377
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
378
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
379
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
380
+ ./test/test_property_sets.rb:15:in `__bind_1294696496_718789'
381
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
382
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
383
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
384
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
385
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
386
+ ./test/test_property_sets.rb:14
387
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
388
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
389
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
390
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
391
+ SQL (0.0ms) BEGIN
392
+ SQL (0.2ms) SAVEPOINT active_record_1
393
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:54:56', '2011-01-10 13:54:56')
394
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
395
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
396
+ SQL (0.3ms) ROLLBACK
397
+ SQL (0.1ms) BEGIN
398
+ SQL (0.0ms) SAVEPOINT active_record_1
399
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:54:56', '2011-01-10 13:54:56')
400
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
401
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
402
+ SQL (0.3ms) ROLLBACK
403
+ SQL (0.0ms) BEGIN
404
+ SQL (0.0ms) SAVEPOINT active_record_1
405
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:54:56', '2011-01-10 13:54:56')
406
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
407
+ AccountSettings Columns (1.0ms) SHOW FIELDS FROM `account_settings`
408
+ SQL (0.2ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
409
+ SQL (0.3ms) ROLLBACK
410
+ SQL (0.0ms) BEGIN
411
+ SQL (0.0ms) SAVEPOINT active_record_1
412
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:54:56', '2011-01-10 13:54:56')
413
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
414
+ AccountSettings Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
415
+ SQL (0.3ms) ROLLBACK
416
+ SQL (0.0ms) BEGIN
417
+ SQL (0.0ms) SAVEPOINT active_record_1
418
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:54:56', '2011-01-10 13:54:56')
419
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
420
+ SQL (0.5ms) ROLLBACK
421
+ SQL (0.1ms) BEGIN
422
+ SQL (0.1ms) SAVEPOINT active_record_1
423
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:54:56', '2011-01-10 13:54:56')
424
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
425
+ SQL (0.3ms) ROLLBACK
426
+ SQL (0.1ms) BEGIN
427
+ SQL (0.1ms) SAVEPOINT active_record_1
428
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:54:56', '2011-01-10 13:54:56')
429
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
430
+ SQL (0.3ms) ROLLBACK
431
+ SQL (0.3ms) SET NAMES 'utf8'
432
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
433
+ SQL (0.4ms) SHOW TABLES
434
+ SQL (2.3ms) DROP TABLE `account_settings`
435
+ SQL (19.7ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
436
+ SQL (0.3ms) SHOW TABLES
437
+ SQL (0.8ms) DROP TABLE `accounts`
438
+ SQL (19.4ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
439
+ SQL (0.3ms) SHOW TABLES
440
+ SQL (0.2ms) SELECT version FROM `schema_migrations`
441
+ SQL (0.4ms) SHOW TABLES
442
+ Account Columns (0.9ms) SHOW FIELDS FROM `accounts`
443
+ Unable to load account, underlying cause no such file to load -- account.rb
444
+
445
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
446
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
447
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
448
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
449
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
450
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
451
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
452
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
453
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
454
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
455
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
456
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
457
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
458
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
459
+ ./test/test_property_sets.rb:15:in `__bind_1294696531_311913'
460
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
461
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
462
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
463
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
464
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
465
+ ./test/test_property_sets.rb:14
466
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
467
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
468
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
469
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
470
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
471
+
472
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
473
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
474
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
475
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
476
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
477
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
478
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
479
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
480
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
481
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
482
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
483
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
484
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
485
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
486
+ ./test/test_property_sets.rb:15:in `__bind_1294696531_311913'
487
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
488
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
489
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
490
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
491
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
492
+ ./test/test_property_sets.rb:14
493
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
494
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
495
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
496
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
497
+ SQL (0.0ms) BEGIN
498
+ SQL (0.2ms) SAVEPOINT active_record_1
499
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:55:31', '2011-01-10 13:55:31')
500
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
501
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
502
+ AccountSettings Columns (0.7ms) SHOW FIELDS FROM `account_settings`
503
+ SQL (0.5ms) ROLLBACK
504
+ SQL (0.1ms) BEGIN
505
+ SQL (0.0ms) SAVEPOINT active_record_1
506
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:55:31', '2011-01-10 13:55:31')
507
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
508
+ AccountSettings Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
509
+ SQL (0.3ms) ROLLBACK
510
+ SQL (0.0ms) BEGIN
511
+ SQL (0.0ms) SAVEPOINT active_record_1
512
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:55:31', '2011-01-10 13:55:31')
513
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
514
+ SQL (0.1ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
515
+ SQL (0.3ms) ROLLBACK
516
+ SQL (0.0ms) BEGIN
517
+ SQL (0.0ms) SAVEPOINT active_record_1
518
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:55:31', '2011-01-10 13:55:31')
519
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
520
+ AccountSettings Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
521
+ SQL (0.5ms) ROLLBACK
522
+ SQL (0.0ms) BEGIN
523
+ SQL (0.0ms) SAVEPOINT active_record_1
524
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:55:31', '2011-01-10 13:55:31')
525
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
526
+ SQL (0.8ms) ROLLBACK
527
+ SQL (0.0ms) BEGIN
528
+ SQL (0.0ms) SAVEPOINT active_record_1
529
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:55:31', '2011-01-10 13:55:31')
530
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
531
+ SQL (0.4ms) ROLLBACK
532
+ SQL (0.0ms) BEGIN
533
+ SQL (0.0ms) SAVEPOINT active_record_1
534
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 13:55:31', '2011-01-10 13:55:31')
535
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
536
+ SQL (0.3ms) ROLLBACK
537
+ SQL (0.2ms) SET NAMES 'utf8'
538
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
539
+ SQL (0.9ms) SHOW TABLES
540
+ SQL (1.8ms) DROP TABLE `account_settings`
541
+ SQL (29.8ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
542
+ SQL (0.3ms) SHOW TABLES
543
+ SQL (0.8ms) DROP TABLE `accounts`
544
+ SQL (21.2ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
545
+ SQL (0.4ms) SHOW TABLES
546
+ SQL (0.2ms) SELECT version FROM `schema_migrations`
547
+ SQL (0.5ms) SHOW TABLES
548
+ Account Columns (2.2ms) SHOW FIELDS FROM `accounts`
549
+ Unable to load account, underlying cause no such file to load -- account.rb
550
+
551
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
552
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
553
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
554
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
555
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
556
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
557
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
558
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
559
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
560
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
561
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
562
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
563
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
564
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
565
+ ./test/test_property_sets.rb:15:in `__bind_1294696874_82716'
566
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
567
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
568
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
569
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
570
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
571
+ ./test/test_property_sets.rb:14
572
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
573
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
574
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
575
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
576
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
577
+
578
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
579
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
580
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
581
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
582
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
583
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
584
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
585
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
586
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
587
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
588
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
589
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
590
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
591
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
592
+ ./test/test_property_sets.rb:15:in `__bind_1294696874_82716'
593
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
594
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
595
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
596
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
597
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
598
+ ./test/test_property_sets.rb:14
599
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
600
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
601
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
602
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
603
+ SQL (0.0ms) BEGIN
604
+ SQL (0.1ms) SAVEPOINT active_record_1
605
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:01:14', '2011-01-10 14:01:14')
606
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
607
+ AccountSettings Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
608
+ AccountSettings Columns (0.9ms) SHOW FIELDS FROM `account_settings`
609
+ SQL (0.5ms) ROLLBACK
610
+ SQL (0.2ms) BEGIN
611
+ SQL (0.2ms) SAVEPOINT active_record_1
612
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:01:14', '2011-01-10 14:01:14')
613
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
614
+ AccountSettings Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
615
+ SQL (0.4ms) ROLLBACK
616
+ SQL (0.2ms) BEGIN
617
+ SQL (0.2ms) SAVEPOINT active_record_1
618
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:01:14', '2011-01-10 14:01:14')
619
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
620
+ SQL (0.2ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
621
+ SQL (0.3ms) ROLLBACK
622
+ SQL (0.0ms) BEGIN
623
+ SQL (0.0ms) SAVEPOINT active_record_1
624
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:01:14', '2011-01-10 14:01:14')
625
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
626
+ AccountSettings Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
627
+ SQL (0.5ms) ROLLBACK
628
+ SQL (0.1ms) BEGIN
629
+ SQL (0.2ms) SAVEPOINT active_record_1
630
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:01:14', '2011-01-10 14:01:14')
631
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
632
+ SQL (0.3ms) ROLLBACK
633
+ SQL (0.0ms) BEGIN
634
+ SQL (0.0ms) SAVEPOINT active_record_1
635
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:01:14', '2011-01-10 14:01:14')
636
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
637
+ SQL (0.5ms) ROLLBACK
638
+ SQL (0.0ms) BEGIN
639
+ SQL (0.0ms) SAVEPOINT active_record_1
640
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:01:14', '2011-01-10 14:01:14')
641
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
642
+ SQL (0.3ms) ROLLBACK
643
+ SQL (0.2ms) SET NAMES 'utf8'
644
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
645
+ SQL (0.3ms) SHOW TABLES
646
+ SQL (0.9ms) DROP TABLE `account_settings`
647
+ SQL (166.5ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
648
+ SQL (0.4ms) SHOW TABLES
649
+ SQL (1.2ms) DROP TABLE `accounts`
650
+ SQL (11.9ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
651
+ SQL (0.3ms) SHOW TABLES
652
+ SQL (0.2ms) SELECT version FROM `schema_migrations`
653
+ SQL (0.5ms) SHOW TABLES
654
+ Account Columns (1.1ms) SHOW FIELDS FROM `accounts`
655
+ Unable to load account, underlying cause no such file to load -- account.rb
656
+
657
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
658
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
659
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
660
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
661
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
662
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
663
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
664
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
665
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
666
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
667
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
668
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
669
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
670
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
671
+ ./test/test_property_sets.rb:15:in `__bind_1294696927_504650'
672
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
673
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
674
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
675
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
676
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
677
+ ./test/test_property_sets.rb:14
678
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
679
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
680
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
681
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
682
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
683
+
684
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
685
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
686
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
687
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
688
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
689
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
690
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
691
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
692
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
693
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
694
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
695
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
696
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
697
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
698
+ ./test/test_property_sets.rb:15:in `__bind_1294696927_504650'
699
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
700
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
701
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
702
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
703
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
704
+ ./test/test_property_sets.rb:14
705
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
706
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
707
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
708
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
709
+ SQL (0.0ms) BEGIN
710
+ SQL (0.2ms) SAVEPOINT active_record_1
711
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:02:07', '2011-01-10 14:02:07')
712
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
713
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
714
+ AccountSettings Columns (0.9ms) SHOW FIELDS FROM `account_settings`
715
+ SQL (0.3ms) ROLLBACK
716
+ SQL (0.0ms) BEGIN
717
+ SQL (0.0ms) SAVEPOINT active_record_1
718
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:02:07', '2011-01-10 14:02:07')
719
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
720
+ AccountSettings Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
721
+ SQL (0.4ms) ROLLBACK
722
+ SQL (0.0ms) BEGIN
723
+ SQL (0.0ms) SAVEPOINT active_record_1
724
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:02:07', '2011-01-10 14:02:07')
725
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
726
+ SQL (0.2ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
727
+ SQL (0.5ms) ROLLBACK
728
+ SQL (0.1ms) BEGIN
729
+ SQL (0.0ms) SAVEPOINT active_record_1
730
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:02:07', '2011-01-10 14:02:07')
731
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
732
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
733
+ SQL (0.5ms) ROLLBACK
734
+ SQL (0.1ms) BEGIN
735
+ SQL (0.1ms) SAVEPOINT active_record_1
736
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:02:07', '2011-01-10 14:02:07')
737
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
738
+ SQL (0.4ms) ROLLBACK
739
+ SQL (0.1ms) BEGIN
740
+ SQL (0.1ms) SAVEPOINT active_record_1
741
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:02:07', '2011-01-10 14:02:07')
742
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
743
+ SQL (0.3ms) ROLLBACK
744
+ SQL (0.0ms) BEGIN
745
+ SQL (0.0ms) SAVEPOINT active_record_1
746
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:02:07', '2011-01-10 14:02:07')
747
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
748
+ SQL (0.3ms) ROLLBACK
749
+ SQL (0.2ms) SET NAMES 'utf8'
750
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
751
+ SQL (0.3ms) SHOW TABLES
752
+ SQL (2.3ms) DROP TABLE `account_settings`
753
+ SQL (166.9ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
754
+ SQL (0.4ms) SHOW TABLES
755
+ SQL (1.0ms) DROP TABLE `accounts`
756
+ SQL (12.3ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
757
+ SQL (0.3ms) SHOW TABLES
758
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
759
+ SQL (0.4ms) SHOW TABLES
760
+ Account Columns (1.0ms) SHOW FIELDS FROM `accounts`
761
+ Unable to load account, underlying cause no such file to load -- account.rb
762
+
763
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
764
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
765
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
766
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
767
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
768
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
769
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
770
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
771
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
772
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
773
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
774
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
775
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
776
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
777
+ ./test/test_property_sets.rb:15:in `__bind_1294696939_767492'
778
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
779
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
780
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
781
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
782
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
783
+ ./test/test_property_sets.rb:14
784
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
785
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
786
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
787
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
788
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
789
+
790
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
791
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
792
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
793
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
794
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
795
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
796
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
797
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
798
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
799
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
800
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
801
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
802
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
803
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
804
+ ./test/test_property_sets.rb:15:in `__bind_1294696939_767492'
805
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
806
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
807
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
808
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
809
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
810
+ ./test/test_property_sets.rb:14
811
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
812
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
813
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
814
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
815
+ SQL (0.0ms) BEGIN
816
+ SQL (0.2ms) SAVEPOINT active_record_1
817
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:02:19', '2011-01-10 14:02:19')
818
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
819
+ AccountSettings Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
820
+ AccountSettings Columns (1.0ms) SHOW FIELDS FROM `account_settings`
821
+ SQL (0.5ms) ROLLBACK
822
+ SQL (0.2ms) BEGIN
823
+ SQL (0.1ms) SAVEPOINT active_record_1
824
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:02:19', '2011-01-10 14:02:19')
825
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
826
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
827
+ SQL (0.3ms) ROLLBACK
828
+ SQL (0.1ms) BEGIN
829
+ SQL (0.1ms) SAVEPOINT active_record_1
830
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:02:19', '2011-01-10 14:02:19')
831
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
832
+ SQL (0.2ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
833
+ SQL (0.3ms) ROLLBACK
834
+ SQL (0.0ms) BEGIN
835
+ SQL (0.0ms) SAVEPOINT active_record_1
836
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:02:19', '2011-01-10 14:02:19')
837
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
838
+ AccountSettings Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
839
+ SQL (0.5ms) ROLLBACK
840
+ SQL (0.2ms) BEGIN
841
+ SQL (0.1ms) SAVEPOINT active_record_1
842
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:02:19', '2011-01-10 14:02:19')
843
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
844
+ SQL (0.5ms) ROLLBACK
845
+ SQL (0.1ms) BEGIN
846
+ SQL (0.1ms) SAVEPOINT active_record_1
847
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:02:19', '2011-01-10 14:02:19')
848
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
849
+ SQL (0.3ms) ROLLBACK
850
+ SQL (0.0ms) BEGIN
851
+ SQL (0.0ms) SAVEPOINT active_record_1
852
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:02:19', '2011-01-10 14:02:19')
853
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
854
+ SQL (0.3ms) ROLLBACK
855
+ SQL (0.2ms) SET NAMES 'utf8'
856
+ SQL (0.1ms) SET SQL_AUTO_IS_NULL=0
857
+ SQL (0.3ms) SHOW TABLES
858
+ SQL (2.2ms) DROP TABLE `account_settings`
859
+ SQL (12.1ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
860
+ SQL (0.6ms) SHOW TABLES
861
+ SQL (1.4ms) DROP TABLE `accounts`
862
+ SQL (11.3ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
863
+ SQL (0.3ms) SHOW TABLES
864
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
865
+ SQL (0.3ms) SHOW TABLES
866
+ Account Columns (1.1ms) SHOW FIELDS FROM `accounts`
867
+ Unable to load account, underlying cause no such file to load -- account.rb
868
+
869
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
870
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
871
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
872
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
873
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
874
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
875
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
876
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
877
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
878
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
879
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
880
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
881
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
882
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
883
+ ./test/test_property_sets.rb:15:in `__bind_1294697163_850069'
884
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
885
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
886
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
887
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
888
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
889
+ ./test/test_property_sets.rb:14
890
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
891
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
892
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
893
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
894
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
895
+
896
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
897
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
898
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
899
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
900
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
901
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
902
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
903
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
904
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
905
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
906
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
907
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
908
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
909
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
910
+ ./test/test_property_sets.rb:15:in `__bind_1294697163_850069'
911
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
912
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
913
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
914
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
915
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
916
+ ./test/test_property_sets.rb:14
917
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
918
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
919
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
920
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
921
+ SQL (0.0ms) BEGIN
922
+ SQL (0.2ms) SAVEPOINT active_record_1
923
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:06:03', '2011-01-10 14:06:03')
924
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
925
+ AccountSettings Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
926
+ AccountSettings Columns (0.9ms) SHOW FIELDS FROM `account_settings`
927
+ SQL (0.2ms) SAVEPOINT active_record_1
928
+ AccountSettings Load (0.4ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
929
+ Account Update (0.4ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:06:03' WHERE `id` = 2
930
+ AccountSettings Create (0.4ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:06:03', '2011-01-10 14:06:03', 2, '1')
931
+ AccountSettings Load (0.4ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
932
+ SQL (0.3ms) RELEASE SAVEPOINT active_record_1
933
+ SQL (0.6ms) ROLLBACK
934
+ SQL (0.2ms) BEGIN
935
+ SQL (0.1ms) SAVEPOINT active_record_1
936
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:06:03', '2011-01-10 14:06:03')
937
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
938
+ AccountSettings Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
939
+ SQL (0.1ms) SAVEPOINT active_record_1
940
+ AccountSettings Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3) LIMIT 1
941
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:06:03' WHERE `id` = 3
942
+ AccountSettings Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:06:03', '2011-01-10 14:06:03', 3, '1')
943
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
944
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
945
+ SQL (0.0ms) SAVEPOINT active_record_1
946
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 3) 
947
+ Account Update (0.1ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:06:03' WHERE `id` = 3
948
+ AccountSettings Destroy (0.2ms) DELETE FROM `account_settings` WHERE `id` = 5
949
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
950
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
951
+ AccountSettings Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
952
+ SQL (0.6ms) ROLLBACK
953
+ SQL (0.1ms) BEGIN
954
+ SQL (0.1ms) SAVEPOINT active_record_1
955
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:06:03', '2011-01-10 14:06:03')
956
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
957
+ SQL (0.3ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
958
+ SQL (0.5ms) ROLLBACK
959
+ SQL (0.0ms) BEGIN
960
+ SQL (0.0ms) SAVEPOINT active_record_1
961
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:06:03', '2011-01-10 14:06:03')
962
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
963
+ AccountSettings Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
964
+ SQL (0.5ms) ROLLBACK
965
+ SQL (0.0ms) BEGIN
966
+ SQL (0.0ms) SAVEPOINT active_record_1
967
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:06:03', '2011-01-10 14:06:03')
968
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
969
+ SQL (0.4ms) ROLLBACK
970
+ SQL (0.0ms) BEGIN
971
+ SQL (0.0ms) SAVEPOINT active_record_1
972
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:06:03', '2011-01-10 14:06:03')
973
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
974
+ SQL (0.4ms) ROLLBACK
975
+ SQL (0.1ms) BEGIN
976
+ SQL (0.1ms) SAVEPOINT active_record_1
977
+ Account Create (0.4ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:06:03', '2011-01-10 14:06:03')
978
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
979
+ SQL (0.5ms) ROLLBACK
980
+ SQL (0.4ms) SHOW TABLES
981
+ SQL (0.2ms) SET NAMES 'utf8'
982
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
983
+ SQL (0.3ms) SHOW TABLES
984
+ SQL (2.1ms) DROP TABLE `account_settings`
985
+ SQL (29.4ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
986
+ SQL (0.3ms) SHOW TABLES
987
+ SQL (0.9ms) DROP TABLE `accounts`
988
+ SQL (21.5ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
989
+ SQL (0.3ms) SHOW TABLES
990
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
991
+ SQL (0.4ms) SHOW TABLES
992
+ Account Columns (1.1ms) SHOW FIELDS FROM `accounts`
993
+ Unable to load account, underlying cause no such file to load -- account.rb
994
+
995
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
996
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
997
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
998
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
999
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
1000
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
1001
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
1002
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
1003
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
1004
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
1005
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
1006
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
1007
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
1008
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
1009
+ ./test/test_property_sets.rb:15:in `__bind_1294697182_522080'
1010
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
1011
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
1012
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
1013
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
1014
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
1015
+ ./test/test_property_sets.rb:14
1016
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
1017
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1018
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
1019
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1020
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
1021
+
1022
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
1023
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
1024
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
1025
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
1026
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
1027
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
1028
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
1029
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
1030
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
1031
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
1032
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
1033
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
1034
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
1035
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
1036
+ ./test/test_property_sets.rb:15:in `__bind_1294697182_522080'
1037
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
1038
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
1039
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
1040
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
1041
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
1042
+ ./test/test_property_sets.rb:14
1043
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
1044
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1045
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
1046
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1047
+ SQL (0.0ms) BEGIN
1048
+ SQL (0.2ms) SAVEPOINT active_record_1
1049
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:06:22', '2011-01-10 14:06:22')
1050
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1051
+ AccountSettings Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
1052
+ AccountSettings Columns (0.8ms) SHOW FIELDS FROM `account_settings`
1053
+ SQL (0.2ms) SAVEPOINT active_record_1
1054
+ AccountSettings Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
1055
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:06:22' WHERE `id` = 2
1056
+ AccountSettings Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:06:22', '2011-01-10 14:06:22', 2, '1')
1057
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
1058
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1059
+ SQL (0.4ms) ROLLBACK
1060
+ SQL (0.0ms) BEGIN
1061
+ SQL (0.0ms) SAVEPOINT active_record_1
1062
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:06:22', '2011-01-10 14:06:22')
1063
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1064
+ AccountSettings Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1065
+ SQL (0.1ms) SAVEPOINT active_record_1
1066
+ AccountSettings Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3) LIMIT 1
1067
+ Account Update (0.4ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:06:22' WHERE `id` = 3
1068
+ AccountSettings Create (0.3ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:06:22', '2011-01-10 14:06:22', 3, '1')
1069
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1070
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1071
+ SQL (0.2ms) SAVEPOINT active_record_1
1072
+ Account Load (0.2ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 3) 
1073
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:06:22' WHERE `id` = 3
1074
+ AccountSettings Destroy (0.2ms) DELETE FROM `account_settings` WHERE `id` = 5
1075
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1076
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1077
+ AccountSettings Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1078
+ SQL (0.4ms) ROLLBACK
1079
+ SQL (0.1ms) BEGIN
1080
+ SQL (0.1ms) SAVEPOINT active_record_1
1081
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:06:22', '2011-01-10 14:06:22')
1082
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1083
+ SQL (0.3ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
1084
+ SQL (0.5ms) ROLLBACK
1085
+ SQL (0.0ms) BEGIN
1086
+ SQL (0.0ms) SAVEPOINT active_record_1
1087
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:06:22', '2011-01-10 14:06:22')
1088
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1089
+ AccountSettings Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
1090
+ SQL (0.5ms) ROLLBACK
1091
+ SQL (0.2ms) BEGIN
1092
+ SQL (0.2ms) SAVEPOINT active_record_1
1093
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:06:22', '2011-01-10 14:06:22')
1094
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1095
+ SQL (0.4ms) ROLLBACK
1096
+ SQL (0.0ms) BEGIN
1097
+ SQL (0.0ms) SAVEPOINT active_record_1
1098
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:06:22', '2011-01-10 14:06:22')
1099
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1100
+ SQL (0.3ms) ROLLBACK
1101
+ SQL (0.1ms) BEGIN
1102
+ SQL (0.1ms) SAVEPOINT active_record_1
1103
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:06:22', '2011-01-10 14:06:22')
1104
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1105
+ SQL (0.3ms) ROLLBACK
1106
+ SQL (0.2ms) SET NAMES 'utf8'
1107
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
1108
+ SQL (0.3ms) SHOW TABLES
1109
+ SQL (2.1ms) DROP TABLE `account_settings`
1110
+ SQL (166.4ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1111
+ SQL (0.4ms) SHOW TABLES
1112
+ SQL (1.0ms) DROP TABLE `accounts`
1113
+ SQL (10.5ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1114
+ SQL (0.3ms) SHOW TABLES
1115
+ SQL (0.2ms) SELECT version FROM `schema_migrations`
1116
+ SQL (0.3ms) SHOW TABLES
1117
+ Account Columns (1.0ms) SHOW FIELDS FROM `accounts`
1118
+ Unable to load account, underlying cause no such file to load -- account.rb
1119
+
1120
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
1121
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
1122
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
1123
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
1124
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
1125
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
1126
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
1127
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
1128
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
1129
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
1130
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
1131
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
1132
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
1133
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
1134
+ ./test/test_property_sets.rb:15:in `__bind_1294697227_546060'
1135
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
1136
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
1137
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
1138
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
1139
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
1140
+ ./test/test_property_sets.rb:14
1141
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
1142
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1143
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
1144
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1145
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
1146
+
1147
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
1148
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
1149
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
1150
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
1151
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
1152
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
1153
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
1154
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
1155
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
1156
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
1157
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
1158
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
1159
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
1160
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
1161
+ ./test/test_property_sets.rb:15:in `__bind_1294697227_546060'
1162
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
1163
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
1164
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
1165
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
1166
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
1167
+ ./test/test_property_sets.rb:14
1168
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
1169
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1170
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
1171
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1172
+ SQL (0.0ms) BEGIN
1173
+ SQL (0.2ms) SAVEPOINT active_record_1
1174
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:07:07', '2011-01-10 14:07:07')
1175
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1176
+ AccountSettings Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
1177
+ AccountSettings Columns (0.8ms) SHOW FIELDS FROM `account_settings`
1178
+ SQL (0.2ms) SAVEPOINT active_record_1
1179
+ AccountSettings Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
1180
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:07:07' WHERE `id` = 2
1181
+ AccountSettings Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:07:07', '2011-01-10 14:07:07', 2, '1')
1182
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
1183
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1184
+ SQL (0.0ms) SAVEPOINT active_record_1
1185
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
1186
+ AccountSettings Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2 AND `account_settings`.id <> 4) LIMIT 1
1187
+ AccountSettings Update (0.2ms) UPDATE `account_settings` SET `updated_at` = '2011-01-10 14:07:07', `value` = '2' WHERE `id` = 4
1188
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1189
+ SQL (0.4ms) ROLLBACK
1190
+ SQL (0.1ms) BEGIN
1191
+ SQL (0.1ms) SAVEPOINT active_record_1
1192
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:07:07', '2011-01-10 14:07:07')
1193
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1194
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1195
+ SQL (0.1ms) SAVEPOINT active_record_1
1196
+ AccountSettings Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3) LIMIT 1
1197
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:07:07' WHERE `id` = 3
1198
+ AccountSettings Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:07:07', '2011-01-10 14:07:07', 3, '1')
1199
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1200
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1201
+ SQL (0.2ms) SAVEPOINT active_record_1
1202
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 3) 
1203
+ Account Update (0.1ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:07:07' WHERE `id` = 3
1204
+ AccountSettings Destroy (0.1ms) DELETE FROM `account_settings` WHERE `id` = 5
1205
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1206
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1207
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1208
+ SQL (0.6ms) ROLLBACK
1209
+ SQL (0.1ms) BEGIN
1210
+ SQL (0.1ms) SAVEPOINT active_record_1
1211
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:07:07', '2011-01-10 14:07:07')
1212
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
1213
+ SQL (0.2ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
1214
+ SQL (0.3ms) ROLLBACK
1215
+ SQL (0.1ms) BEGIN
1216
+ SQL (0.0ms) SAVEPOINT active_record_1
1217
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:07:07', '2011-01-10 14:07:07')
1218
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
1219
+ AccountSettings Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
1220
+ SQL (0.4ms) ROLLBACK
1221
+ SQL (0.0ms) BEGIN
1222
+ SQL (0.0ms) SAVEPOINT active_record_1
1223
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:07:07', '2011-01-10 14:07:07')
1224
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1225
+ SQL (0.3ms) ROLLBACK
1226
+ SQL (0.0ms) BEGIN
1227
+ SQL (0.0ms) SAVEPOINT active_record_1
1228
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:07:07', '2011-01-10 14:07:07')
1229
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
1230
+ SQL (0.3ms) ROLLBACK
1231
+ SQL (0.1ms) BEGIN
1232
+ SQL (0.1ms) SAVEPOINT active_record_1
1233
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:07:07', '2011-01-10 14:07:07')
1234
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1235
+ SQL (0.4ms) ROLLBACK
1236
+ SQL (0.1ms) SET NAMES 'utf8'
1237
+ SQL (0.1ms) SET SQL_AUTO_IS_NULL=0
1238
+ SQL (0.3ms) SHOW TABLES
1239
+ SQL (2.2ms) DROP TABLE `account_settings`
1240
+ SQL (190.5ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1241
+ SQL (0.4ms) SHOW TABLES
1242
+ SQL (1.5ms) DROP TABLE `accounts`
1243
+ SQL (20.0ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1244
+ SQL (0.4ms) SHOW TABLES
1245
+ SQL (0.2ms) SELECT version FROM `schema_migrations`
1246
+ SQL (0.4ms) SHOW TABLES
1247
+ Account Columns (1.1ms) SHOW FIELDS FROM `accounts`
1248
+ Unable to load account, underlying cause no such file to load -- account.rb
1249
+
1250
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
1251
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
1252
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
1253
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
1254
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
1255
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
1256
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
1257
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
1258
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
1259
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
1260
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
1261
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
1262
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
1263
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
1264
+ ./test/test_property_sets.rb:15:in `__bind_1294697270_666492'
1265
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
1266
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
1267
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
1268
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
1269
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
1270
+ ./test/test_property_sets.rb:14
1271
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
1272
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1273
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
1274
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1275
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
1276
+
1277
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
1278
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
1279
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
1280
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
1281
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
1282
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
1283
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
1284
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
1285
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
1286
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
1287
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
1288
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
1289
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
1290
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
1291
+ ./test/test_property_sets.rb:15:in `__bind_1294697270_666492'
1292
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
1293
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
1294
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
1295
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
1296
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
1297
+ ./test/test_property_sets.rb:14
1298
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
1299
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1300
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
1301
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1302
+ SQL (0.0ms) BEGIN
1303
+ SQL (0.2ms) SAVEPOINT active_record_1
1304
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:07:50', '2011-01-10 14:07:50')
1305
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1306
+ AccountSettings Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
1307
+ AccountSettings Columns (0.9ms) SHOW FIELDS FROM `account_settings`
1308
+ SQL (0.2ms) SAVEPOINT active_record_1
1309
+ AccountSettings Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
1310
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:07:50' WHERE `id` = 2
1311
+ AccountSettings Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:07:50', '2011-01-10 14:07:50', 2, '1')
1312
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
1313
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1314
+ SQL (0.2ms) SAVEPOINT active_record_1
1315
+ Account Load (0.2ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
1316
+ AccountSettings Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2 AND `account_settings`.id <> 4) LIMIT 1
1317
+ AccountSettings Update (0.3ms) UPDATE `account_settings` SET `updated_at` = '2011-01-10 14:07:50', `value` = '2' WHERE `id` = 4
1318
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1319
+ SQL (0.4ms) ROLLBACK
1320
+ SQL (0.0ms) BEGIN
1321
+ SQL (0.0ms) SAVEPOINT active_record_1
1322
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:07:50', '2011-01-10 14:07:50')
1323
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
1324
+ AccountSettings Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1325
+ SQL (0.1ms) SAVEPOINT active_record_1
1326
+ AccountSettings Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3) LIMIT 1
1327
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:07:50' WHERE `id` = 3
1328
+ AccountSettings Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:07:50', '2011-01-10 14:07:50', 3, '1')
1329
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1330
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1331
+ SQL (0.2ms) SAVEPOINT active_record_1
1332
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 3) 
1333
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:07:50' WHERE `id` = 3
1334
+ AccountSettings Destroy (0.2ms) DELETE FROM `account_settings` WHERE `id` = 5
1335
+ AccountSettings Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1336
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1337
+ AccountSettings Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1338
+ SQL (0.5ms) ROLLBACK
1339
+ SQL (0.0ms) BEGIN
1340
+ SQL (0.0ms) SAVEPOINT active_record_1
1341
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:07:50', '2011-01-10 14:07:50')
1342
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1343
+ SQL (0.1ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
1344
+ SQL (0.3ms) ROLLBACK
1345
+ SQL (0.0ms) BEGIN
1346
+ SQL (0.0ms) SAVEPOINT active_record_1
1347
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:07:50', '2011-01-10 14:07:50')
1348
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1349
+ AccountSettings Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
1350
+ SQL (0.6ms) ROLLBACK
1351
+ SQL (0.0ms) BEGIN
1352
+ SQL (0.0ms) SAVEPOINT active_record_1
1353
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:07:50', '2011-01-10 14:07:50')
1354
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1355
+ SQL (0.5ms) ROLLBACK
1356
+ SQL (0.0ms) BEGIN
1357
+ SQL (0.1ms) SAVEPOINT active_record_1
1358
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:07:50', '2011-01-10 14:07:50')
1359
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1360
+ SQL (0.3ms) ROLLBACK
1361
+ SQL (0.1ms) BEGIN
1362
+ SQL (0.2ms) SAVEPOINT active_record_1
1363
+ Account Create (0.5ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:07:50', '2011-01-10 14:07:50')
1364
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1365
+ SQL (0.5ms) ROLLBACK
1366
+ SQL (0.2ms) SET NAMES 'utf8'
1367
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
1368
+ SQL (0.3ms) SHOW TABLES
1369
+ SQL (2.2ms) DROP TABLE `account_settings`
1370
+ SQL (10.8ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1371
+ SQL (0.5ms) SHOW TABLES
1372
+ SQL (1.2ms) DROP TABLE `accounts`
1373
+ SQL (10.8ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1374
+ SQL (0.3ms) SHOW TABLES
1375
+ SQL (0.2ms) SELECT version FROM `schema_migrations`
1376
+ SQL (0.3ms) SHOW TABLES
1377
+ Account Columns (1.0ms) SHOW FIELDS FROM `accounts`
1378
+ Unable to load account, underlying cause no such file to load -- account.rb
1379
+
1380
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
1381
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
1382
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
1383
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
1384
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
1385
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
1386
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
1387
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
1388
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
1389
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
1390
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
1391
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
1392
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
1393
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
1394
+ ./test/test_property_sets.rb:15:in `__bind_1294697324_168497'
1395
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
1396
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
1397
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
1398
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
1399
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
1400
+ ./test/test_property_sets.rb:14
1401
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
1402
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1403
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
1404
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1405
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
1406
+
1407
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
1408
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
1409
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
1410
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
1411
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
1412
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
1413
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
1414
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
1415
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
1416
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
1417
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
1418
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
1419
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
1420
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
1421
+ ./test/test_property_sets.rb:15:in `__bind_1294697324_168497'
1422
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
1423
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
1424
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
1425
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
1426
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
1427
+ ./test/test_property_sets.rb:14
1428
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
1429
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1430
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
1431
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1432
+ SQL (0.1ms) BEGIN
1433
+ SQL (0.2ms) SAVEPOINT active_record_1
1434
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:08:44', '2011-01-10 14:08:44')
1435
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1436
+ AccountSetting Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
1437
+ SQL (0.2ms) SAVEPOINT active_record_1
1438
+ AccountSetting Load (0.4ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
1439
+ Account Update (0.4ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:08:44' WHERE `id` = 2
1440
+ AccountSetting Create (0.3ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:08:44', '2011-01-10 14:08:44', 2, '1')
1441
+ AccountSetting Load (0.4ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
1442
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1443
+ SQL (0.1ms) SAVEPOINT active_record_1
1444
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
1445
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2 AND `account_settings`.id <> 730411615) LIMIT 1
1446
+ AccountSetting Update (0.2ms) UPDATE `account_settings` SET `updated_at` = '2011-01-10 14:08:44', `value` = '2' WHERE `id` = 730411615
1447
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1448
+ SQL (0.4ms) ROLLBACK
1449
+ SQL (0.1ms) BEGIN
1450
+ SQL (0.0ms) SAVEPOINT active_record_1
1451
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:08:44', '2011-01-10 14:08:44')
1452
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1453
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1454
+ SQL (0.0ms) SAVEPOINT active_record_1
1455
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3) LIMIT 1
1456
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:08:44' WHERE `id` = 3
1457
+ AccountSetting Create (0.3ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:08:44', '2011-01-10 14:08:44', 3, '1')
1458
+ AccountSetting Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1459
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1460
+ SQL (0.1ms) SAVEPOINT active_record_1
1461
+ Account Load (0.3ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 3) 
1462
+ Account Update (0.4ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:08:44' WHERE `id` = 3
1463
+ AccountSetting Destroy (0.4ms) DELETE FROM `account_settings` WHERE `id` = 730411616
1464
+ AccountSetting Load (0.4ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1465
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1466
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1467
+ SQL (0.4ms) ROLLBACK
1468
+ SQL (0.0ms) BEGIN
1469
+ SQL (0.0ms) SAVEPOINT active_record_1
1470
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:08:44', '2011-01-10 14:08:44')
1471
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1472
+ SQL (0.3ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
1473
+ SQL (0.5ms) ROLLBACK
1474
+ SQL (0.0ms) BEGIN
1475
+ SQL (0.0ms) SAVEPOINT active_record_1
1476
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:08:44', '2011-01-10 14:08:44')
1477
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1478
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
1479
+ SQL (0.4ms) ROLLBACK
1480
+ SQL (0.0ms) BEGIN
1481
+ SQL (0.1ms) SAVEPOINT active_record_1
1482
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:08:44', '2011-01-10 14:08:44')
1483
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1484
+ SQL (0.3ms) ROLLBACK
1485
+ SQL (0.1ms) BEGIN
1486
+ SQL (0.1ms) SAVEPOINT active_record_1
1487
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:08:44', '2011-01-10 14:08:44')
1488
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
1489
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 7) LIMIT 1
1490
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hel_lo' AND `account_settings`.`account_id` = 7) LIMIT 1
1491
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hell0' AND `account_settings`.`account_id` = 7) LIMIT 1
1492
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY '_hello' AND `account_settings`.`account_id` = 7) LIMIT 1
1493
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 7) LIMIT 1
1494
+ SQL (0.4ms) ROLLBACK
1495
+ SQL (0.0ms) BEGIN
1496
+ SQL (0.0ms) SAVEPOINT active_record_1
1497
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:08:44', '2011-01-10 14:08:44')
1498
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1499
+ SQL (0.2ms) SAVEPOINT active_record_1
1500
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 8) LIMIT 1
1501
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:08:44' WHERE `id` = 8
1502
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('unique', '2011-01-10 14:08:44', '2011-01-10 14:08:44', 8, NULL)
1503
+ AccountSetting Load (0.4ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 8) 
1504
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1505
+ SQL (0.2ms) SAVEPOINT active_record_1
1506
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 8) LIMIT 1
1507
+ SQL (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1508
+ SQL (0.3ms) ROLLBACK
1509
+ SQL (0.2ms) SET NAMES 'utf8'
1510
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
1511
+ SQL (0.3ms) SHOW TABLES
1512
+ SQL (1.2ms) DROP TABLE `account_settings`
1513
+ SQL (12.7ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1514
+ SQL (0.5ms) SHOW TABLES
1515
+ SQL (1.4ms) DROP TABLE `accounts`
1516
+ SQL (10.4ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1517
+ SQL (0.3ms) SHOW TABLES
1518
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
1519
+ SQL (0.4ms) SHOW TABLES
1520
+ Account Columns (1.4ms) SHOW FIELDS FROM `accounts`
1521
+ Unable to load account, underlying cause no such file to load -- account.rb
1522
+
1523
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
1524
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
1525
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
1526
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
1527
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
1528
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
1529
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
1530
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
1531
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
1532
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
1533
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
1534
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
1535
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
1536
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
1537
+ ./test/test_property_sets.rb:15:in `__bind_1294697465_40156'
1538
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
1539
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
1540
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
1541
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
1542
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
1543
+ ./test/test_property_sets.rb:14
1544
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
1545
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1546
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
1547
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1548
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
1549
+
1550
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
1551
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
1552
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
1553
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
1554
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
1555
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
1556
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
1557
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
1558
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
1559
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
1560
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
1561
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
1562
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
1563
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
1564
+ ./test/test_property_sets.rb:15:in `__bind_1294697465_40156'
1565
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
1566
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
1567
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
1568
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
1569
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
1570
+ ./test/test_property_sets.rb:14
1571
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
1572
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1573
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
1574
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1575
+ SQL (0.1ms) BEGIN
1576
+ SQL (0.1ms) SAVEPOINT active_record_1
1577
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:11:05', '2011-01-10 14:11:05')
1578
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1579
+ AccountSetting Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
1580
+ SQL (0.1ms) SAVEPOINT active_record_1
1581
+ AccountSetting Load (0.4ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
1582
+ Account Update (0.4ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:11:05' WHERE `id` = 2
1583
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:11:05', '2011-01-10 14:11:05', 2, '1')
1584
+ AccountSetting Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
1585
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1586
+ SQL (0.1ms) SAVEPOINT active_record_1
1587
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
1588
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2 AND `account_settings`.id <> 730411615) LIMIT 1
1589
+ AccountSetting Update (0.2ms) UPDATE `account_settings` SET `updated_at` = '2011-01-10 14:11:05', `value` = '2' WHERE `id` = 730411615
1590
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1591
+ SQL (0.3ms) ROLLBACK
1592
+ SQL (0.0ms) BEGIN
1593
+ SQL (0.0ms) SAVEPOINT active_record_1
1594
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:11:05', '2011-01-10 14:11:05')
1595
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1596
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1597
+ SQL (0.1ms) SAVEPOINT active_record_1
1598
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3) LIMIT 1
1599
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:11:05' WHERE `id` = 3
1600
+ AccountSetting Create (0.1ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:11:05', '2011-01-10 14:11:05', 3, '1')
1601
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1602
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1603
+ SQL (0.1ms) SAVEPOINT active_record_1
1604
+ Account Load (0.3ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 3) 
1605
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:11:05' WHERE `id` = 3
1606
+ AccountSetting Destroy (0.2ms) DELETE FROM `account_settings` WHERE `id` = 730411616
1607
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1608
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1609
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1610
+ SQL (0.4ms) ROLLBACK
1611
+ SQL (0.1ms) BEGIN
1612
+ SQL (0.1ms) SAVEPOINT active_record_1
1613
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:11:05', '2011-01-10 14:11:05')
1614
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1615
+ SQL (0.2ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
1616
+ SQL (0.3ms) ROLLBACK
1617
+ SQL (0.0ms) BEGIN
1618
+ SQL (0.1ms) SAVEPOINT active_record_1
1619
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:11:05', '2011-01-10 14:11:05')
1620
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1621
+ AccountSetting Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
1622
+ SQL (0.4ms) ROLLBACK
1623
+ SQL (0.1ms) BEGIN
1624
+ SQL (0.0ms) SAVEPOINT active_record_1
1625
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:11:05', '2011-01-10 14:11:05')
1626
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1627
+ SQL (0.3ms) ROLLBACK
1628
+ SQL (0.0ms) BEGIN
1629
+ SQL (0.0ms) SAVEPOINT active_record_1
1630
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:11:05', '2011-01-10 14:11:05')
1631
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1632
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 7) LIMIT 1
1633
+ AccountSetting Load (0.5ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hel_lo' AND `account_settings`.`account_id` = 7) LIMIT 1
1634
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hell0' AND `account_settings`.`account_id` = 7) LIMIT 1
1635
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY '_hello' AND `account_settings`.`account_id` = 7) LIMIT 1
1636
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 7) LIMIT 1
1637
+ SQL (0.3ms) ROLLBACK
1638
+ SQL (0.0ms) BEGIN
1639
+ SQL (0.0ms) SAVEPOINT active_record_1
1640
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:11:05', '2011-01-10 14:11:05')
1641
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
1642
+ SQL (0.0ms) SAVEPOINT active_record_1
1643
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 8) LIMIT 1
1644
+ Account Update (0.1ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:11:05' WHERE `id` = 8
1645
+ AccountSetting Create (0.1ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('unique', '2011-01-10 14:11:05', '2011-01-10 14:11:05', 8, NULL)
1646
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 8) 
1647
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
1648
+ SQL (0.0ms) SAVEPOINT active_record_1
1649
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 8) LIMIT 1
1650
+ SQL (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1651
+ SQL (0.8ms) ROLLBACK
1652
+ SQL (0.2ms) SET NAMES 'utf8'
1653
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
1654
+ SQL (1.1ms) SHOW TABLES
1655
+ SQL (1.8ms) DROP TABLE `account_settings`
1656
+ SQL (31.3ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1657
+ SQL (0.4ms) SHOW TABLES
1658
+ SQL (1.0ms) DROP TABLE `accounts`
1659
+ SQL (22.2ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1660
+ SQL (0.4ms) SHOW TABLES
1661
+ SQL (0.2ms) SELECT version FROM `schema_migrations`
1662
+ SQL (0.4ms) SHOW TABLES
1663
+ Account Columns (1.2ms) SHOW FIELDS FROM `accounts`
1664
+ Unable to load account, underlying cause no such file to load -- account.rb
1665
+
1666
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
1667
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
1668
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
1669
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
1670
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
1671
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
1672
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
1673
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
1674
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
1675
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
1676
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
1677
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
1678
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
1679
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
1680
+ ./test/test_property_sets.rb:15:in `__bind_1294698711_618267'
1681
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
1682
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
1683
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
1684
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
1685
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
1686
+ ./test/test_property_sets.rb:14
1687
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
1688
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1689
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
1690
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1691
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
1692
+
1693
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
1694
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
1695
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
1696
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
1697
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
1698
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
1699
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
1700
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
1701
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
1702
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
1703
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
1704
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
1705
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
1706
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
1707
+ ./test/test_property_sets.rb:15:in `__bind_1294698711_618267'
1708
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
1709
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
1710
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
1711
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
1712
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
1713
+ ./test/test_property_sets.rb:14
1714
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
1715
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1716
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
1717
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1718
+ SQL (0.1ms) BEGIN
1719
+ SQL (0.1ms) SAVEPOINT active_record_1
1720
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:31:51', '2011-01-10 14:31:51')
1721
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1722
+ SQL (0.1ms) SAVEPOINT active_record_1
1723
+ Account Load (0.3ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
1724
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
1725
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1726
+ SQL (0.2ms) SAVEPOINT active_record_1
1727
+ Account Load (0.2ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
1728
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'bar' AND `account_settings`.`account_id` = 2) LIMIT 1
1729
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
1730
+ SQL (0.0ms) SAVEPOINT active_record_1
1731
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
1732
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'bar' AND `account_settings`.`account_id` = 2) LIMIT 1
1733
+ SQL (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1734
+ Account Load (0.2ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
1735
+ SQL (0.1ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
1736
+ SQL (0.5ms) ROLLBACK
1737
+ SQL (0.0ms) BEGIN
1738
+ SQL (0.0ms) SAVEPOINT active_record_1
1739
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:31:51', '2011-01-10 14:31:51')
1740
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1741
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1742
+ SQL (0.2ms) SAVEPOINT active_record_1
1743
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3) LIMIT 1
1744
+ Account Update (0.4ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:31:51' WHERE `id` = 3
1745
+ AccountSetting Create (0.4ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:31:51', '2011-01-10 14:31:51', 3, '1')
1746
+ AccountSetting Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1747
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1748
+ SQL (0.1ms) SAVEPOINT active_record_1
1749
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 3) 
1750
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3 AND `account_settings`.id <> 730411615) LIMIT 1
1751
+ AccountSetting Update (0.1ms) UPDATE `account_settings` SET `updated_at` = '2011-01-10 14:31:51', `value` = '2' WHERE `id` = 730411615
1752
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1753
+ SQL (0.5ms) ROLLBACK
1754
+ SQL (0.0ms) BEGIN
1755
+ SQL (0.0ms) SAVEPOINT active_record_1
1756
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:31:51', '2011-01-10 14:31:51')
1757
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1758
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
1759
+ SQL (0.0ms) SAVEPOINT active_record_1
1760
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 4) LIMIT 1
1761
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:31:51' WHERE `id` = 4
1762
+ AccountSetting Create (0.3ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:31:51', '2011-01-10 14:31:51', 4, '1')
1763
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
1764
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1765
+ SQL (0.1ms) SAVEPOINT active_record_1
1766
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 4) 
1767
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:31:51' WHERE `id` = 4
1768
+ AccountSetting Destroy (0.1ms) DELETE FROM `account_settings` WHERE `id` = 730411616
1769
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
1770
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
1771
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
1772
+ SQL (0.3ms) ROLLBACK
1773
+ SQL (0.0ms) BEGIN
1774
+ SQL (0.0ms) SAVEPOINT active_record_1
1775
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:31:51', '2011-01-10 14:31:51')
1776
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1777
+ SQL (0.1ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
1778
+ SQL (0.3ms) ROLLBACK
1779
+ SQL (0.0ms) BEGIN
1780
+ SQL (0.0ms) SAVEPOINT active_record_1
1781
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:31:51', '2011-01-10 14:31:51')
1782
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1783
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 6) 
1784
+ SQL (0.4ms) ROLLBACK
1785
+ SQL (0.1ms) BEGIN
1786
+ SQL (0.1ms) SAVEPOINT active_record_1
1787
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:31:51', '2011-01-10 14:31:51')
1788
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1789
+ SQL (0.2ms) ROLLBACK
1790
+ SQL (0.0ms) BEGIN
1791
+ SQL (0.0ms) SAVEPOINT active_record_1
1792
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:31:51', '2011-01-10 14:31:51')
1793
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
1794
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
1795
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hel_lo' AND `account_settings`.`account_id` = 8) LIMIT 1
1796
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hell0' AND `account_settings`.`account_id` = 8) LIMIT 1
1797
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY '_hello' AND `account_settings`.`account_id` = 8) LIMIT 1
1798
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
1799
+ SQL (0.3ms) ROLLBACK
1800
+ SQL (0.0ms) BEGIN
1801
+ SQL (0.2ms) SAVEPOINT active_record_1
1802
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:31:51', '2011-01-10 14:31:51')
1803
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1804
+ SQL (0.0ms) SAVEPOINT active_record_1
1805
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
1806
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:31:51' WHERE `id` = 9
1807
+ AccountSetting Create (0.1ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('unique', '2011-01-10 14:31:51', '2011-01-10 14:31:51', 9, NULL)
1808
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 9) 
1809
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1810
+ SQL (0.1ms) SAVEPOINT active_record_1
1811
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
1812
+ SQL (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1813
+ SQL (0.5ms) ROLLBACK
1814
+ SQL (0.1ms) SET NAMES 'utf8'
1815
+ SQL (0.1ms) SET SQL_AUTO_IS_NULL=0
1816
+ SQL (0.3ms) SHOW TABLES
1817
+ SQL (1.2ms) DROP TABLE `account_settings`
1818
+ SQL (18.1ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1819
+ SQL (0.3ms) SHOW TABLES
1820
+ SQL (0.8ms) DROP TABLE `accounts`
1821
+ SQL (9.0ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1822
+ SQL (0.3ms) SHOW TABLES
1823
+ SQL (0.2ms) SELECT version FROM `schema_migrations`
1824
+ SQL (0.4ms) SHOW TABLES
1825
+ Account Columns (1.0ms) SHOW FIELDS FROM `accounts`
1826
+ Unable to load account, underlying cause no such file to load -- account.rb
1827
+
1828
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
1829
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
1830
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
1831
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
1832
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
1833
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
1834
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
1835
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
1836
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
1837
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
1838
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
1839
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
1840
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
1841
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
1842
+ ./test/test_property_sets.rb:15:in `__bind_1294698727_990508'
1843
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
1844
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
1845
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
1846
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
1847
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
1848
+ ./test/test_property_sets.rb:14
1849
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
1850
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1851
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
1852
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1853
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
1854
+
1855
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
1856
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
1857
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
1858
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
1859
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
1860
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
1861
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
1862
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
1863
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
1864
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
1865
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
1866
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
1867
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
1868
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
1869
+ ./test/test_property_sets.rb:15:in `__bind_1294698727_990508'
1870
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
1871
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
1872
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
1873
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
1874
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
1875
+ ./test/test_property_sets.rb:14
1876
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
1877
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1878
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
1879
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
1880
+ SQL (0.1ms) BEGIN
1881
+ SQL (0.2ms) SAVEPOINT active_record_1
1882
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:08', '2011-01-10 14:32:08')
1883
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
1884
+ SQL (0.3ms) SAVEPOINT active_record_1
1885
+ Account Load (0.3ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
1886
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
1887
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1888
+ SQL (0.1ms) SAVEPOINT active_record_1
1889
+ Account Load (0.2ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
1890
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'bar' AND `account_settings`.`account_id` = 2) LIMIT 1
1891
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1892
+ SQL (0.5ms) ROLLBACK
1893
+ SQL (0.2ms) BEGIN
1894
+ SQL (0.0ms) SAVEPOINT active_record_1
1895
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:08', '2011-01-10 14:32:08')
1896
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1897
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1898
+ SQL (0.2ms) SAVEPOINT active_record_1
1899
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3) LIMIT 1
1900
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:32:08' WHERE `id` = 3
1901
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:32:08', '2011-01-10 14:32:08', 3, '1')
1902
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
1903
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1904
+ SQL (0.2ms) SAVEPOINT active_record_1
1905
+ Account Load (0.2ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 3) 
1906
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3 AND `account_settings`.id <> 730411615) LIMIT 1
1907
+ AccountSetting Update (0.2ms) UPDATE `account_settings` SET `updated_at` = '2011-01-10 14:32:08', `value` = '2' WHERE `id` = 730411615
1908
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1909
+ SQL (0.6ms) ROLLBACK
1910
+ SQL (0.1ms) BEGIN
1911
+ SQL (0.1ms) SAVEPOINT active_record_1
1912
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:08', '2011-01-10 14:32:08')
1913
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1914
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
1915
+ SQL (0.2ms) SAVEPOINT active_record_1
1916
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 4) LIMIT 1
1917
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:32:08' WHERE `id` = 4
1918
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:32:08', '2011-01-10 14:32:08', 4, '1')
1919
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
1920
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1921
+ SQL (0.1ms) SAVEPOINT active_record_1
1922
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 4) 
1923
+ Account Update (0.1ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:32:08' WHERE `id` = 4
1924
+ AccountSetting Destroy (0.2ms) DELETE FROM `account_settings` WHERE `id` = 730411616
1925
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
1926
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1927
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
1928
+ SQL (0.6ms) ROLLBACK
1929
+ SQL (0.0ms) BEGIN
1930
+ SQL (0.0ms) SAVEPOINT active_record_1
1931
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:08', '2011-01-10 14:32:08')
1932
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
1933
+ SQL (0.1ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
1934
+ SQL (0.3ms) ROLLBACK
1935
+ SQL (0.0ms) BEGIN
1936
+ SQL (0.0ms) SAVEPOINT active_record_1
1937
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:08', '2011-01-10 14:32:08')
1938
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
1939
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 6) 
1940
+ SQL (0.4ms) ROLLBACK
1941
+ SQL (0.1ms) BEGIN
1942
+ SQL (0.0ms) SAVEPOINT active_record_1
1943
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:08', '2011-01-10 14:32:08')
1944
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1945
+ SQL (0.3ms) ROLLBACK
1946
+ SQL (0.0ms) BEGIN
1947
+ SQL (0.0ms) SAVEPOINT active_record_1
1948
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:08', '2011-01-10 14:32:08')
1949
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1950
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
1951
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hel_lo' AND `account_settings`.`account_id` = 8) LIMIT 1
1952
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hell0' AND `account_settings`.`account_id` = 8) LIMIT 1
1953
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY '_hello' AND `account_settings`.`account_id` = 8) LIMIT 1
1954
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
1955
+ SQL (0.5ms) ROLLBACK
1956
+ SQL (0.0ms) BEGIN
1957
+ SQL (0.0ms) SAVEPOINT active_record_1
1958
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:08', '2011-01-10 14:32:08')
1959
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
1960
+ SQL (0.2ms) SAVEPOINT active_record_1
1961
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
1962
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:32:08' WHERE `id` = 9
1963
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('unique', '2011-01-10 14:32:08', '2011-01-10 14:32:08', 9, NULL)
1964
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 9) 
1965
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
1966
+ SQL (0.2ms) SAVEPOINT active_record_1
1967
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
1968
+ SQL (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1969
+ SQL (0.4ms) ROLLBACK
1970
+ SQL (0.3ms) SHOW TABLES
1971
+ SQL (0.1ms) SET NAMES 'utf8'
1972
+ SQL (0.1ms) SET SQL_AUTO_IS_NULL=0
1973
+ SQL (0.3ms) SHOW TABLES
1974
+ SQL (1.2ms) DROP TABLE `account_settings`
1975
+ SQL (22.3ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1976
+ SQL (0.3ms) SHOW TABLES
1977
+ SQL (0.8ms) DROP TABLE `accounts`
1978
+ SQL (11.6ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1979
+ SQL (0.3ms) SHOW TABLES
1980
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
1981
+ SQL (0.4ms) SHOW TABLES
1982
+ Account Columns (1.0ms) SHOW FIELDS FROM `accounts`
1983
+ Unable to load account, underlying cause no such file to load -- account.rb
1984
+
1985
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
1986
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
1987
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
1988
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
1989
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
1990
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
1991
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
1992
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
1993
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
1994
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
1995
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
1996
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
1997
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
1998
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
1999
+ ./test/test_property_sets.rb:15:in `__bind_1294698741_790438'
2000
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
2001
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
2002
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
2003
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
2004
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
2005
+ ./test/test_property_sets.rb:14
2006
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
2007
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2008
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
2009
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2010
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
2011
+
2012
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
2013
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
2014
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
2015
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
2016
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
2017
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
2018
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
2019
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
2020
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
2021
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
2022
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
2023
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
2024
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
2025
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
2026
+ ./test/test_property_sets.rb:15:in `__bind_1294698741_790438'
2027
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
2028
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
2029
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
2030
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
2031
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
2032
+ ./test/test_property_sets.rb:14
2033
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
2034
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2035
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
2036
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2037
+ SQL (0.0ms) BEGIN
2038
+ SQL (0.2ms) SAVEPOINT active_record_1
2039
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:21', '2011-01-10 14:32:21')
2040
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
2041
+ SQL (0.2ms) SAVEPOINT active_record_1
2042
+ Account Load (0.3ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
2043
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
2044
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2045
+ SQL (0.1ms) SAVEPOINT active_record_1
2046
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
2047
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'bar' AND `account_settings`.`account_id` = 2) LIMIT 1
2048
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
2049
+ SQL (0.0ms) SAVEPOINT active_record_1
2050
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
2051
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'bar' AND `account_settings`.`account_id` = 2) LIMIT 1
2052
+ SQL (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2053
+ SQL (0.4ms) ROLLBACK
2054
+ SQL (0.2ms) BEGIN
2055
+ SQL (0.2ms) SAVEPOINT active_record_1
2056
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:21', '2011-01-10 14:32:21')
2057
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2058
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
2059
+ SQL (0.2ms) SAVEPOINT active_record_1
2060
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3) LIMIT 1
2061
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:32:21' WHERE `id` = 3
2062
+ AccountSetting Create (0.4ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:32:21', '2011-01-10 14:32:21', 3, '1')
2063
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
2064
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2065
+ SQL (0.0ms) SAVEPOINT active_record_1
2066
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 3) 
2067
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3 AND `account_settings`.id <> 730411615) LIMIT 1
2068
+ AccountSetting Update (0.1ms) UPDATE `account_settings` SET `updated_at` = '2011-01-10 14:32:21', `value` = '2' WHERE `id` = 730411615
2069
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2070
+ SQL (0.4ms) ROLLBACK
2071
+ SQL (0.0ms) BEGIN
2072
+ SQL (0.2ms) SAVEPOINT active_record_1
2073
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:21', '2011-01-10 14:32:21')
2074
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2075
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2076
+ SQL (0.1ms) SAVEPOINT active_record_1
2077
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 4) LIMIT 1
2078
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:32:21' WHERE `id` = 4
2079
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:32:21', '2011-01-10 14:32:21', 4, '1')
2080
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2081
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2082
+ SQL (0.2ms) SAVEPOINT active_record_1
2083
+ Account Load (0.2ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 4) 
2084
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:32:21' WHERE `id` = 4
2085
+ AccountSetting Destroy (0.2ms) DELETE FROM `account_settings` WHERE `id` = 730411616
2086
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2087
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2088
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2089
+ SQL (0.6ms) ROLLBACK
2090
+ SQL (0.1ms) BEGIN
2091
+ SQL (0.1ms) SAVEPOINT active_record_1
2092
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:21', '2011-01-10 14:32:21')
2093
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
2094
+ SQL (0.2ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
2095
+ SQL (0.3ms) ROLLBACK
2096
+ SQL (0.0ms) BEGIN
2097
+ SQL (0.0ms) SAVEPOINT active_record_1
2098
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:21', '2011-01-10 14:32:21')
2099
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2100
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 6) 
2101
+ SQL (0.3ms) ROLLBACK
2102
+ SQL (0.0ms) BEGIN
2103
+ SQL (0.0ms) SAVEPOINT active_record_1
2104
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:21', '2011-01-10 14:32:21')
2105
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2106
+ SQL (0.2ms) ROLLBACK
2107
+ SQL (0.1ms) BEGIN
2108
+ SQL (0.1ms) SAVEPOINT active_record_1
2109
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:21', '2011-01-10 14:32:21')
2110
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2111
+ AccountSetting Load (0.4ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
2112
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hel_lo' AND `account_settings`.`account_id` = 8) LIMIT 1
2113
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hell0' AND `account_settings`.`account_id` = 8) LIMIT 1
2114
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY '_hello' AND `account_settings`.`account_id` = 8) LIMIT 1
2115
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
2116
+ SQL (0.3ms) ROLLBACK
2117
+ SQL (0.1ms) BEGIN
2118
+ SQL (0.1ms) SAVEPOINT active_record_1
2119
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:21', '2011-01-10 14:32:21')
2120
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2121
+ SQL (0.1ms) SAVEPOINT active_record_1
2122
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
2123
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:32:21' WHERE `id` = 9
2124
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('unique', '2011-01-10 14:32:21', '2011-01-10 14:32:21', 9, NULL)
2125
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 9) 
2126
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2127
+ SQL (0.1ms) SAVEPOINT active_record_1
2128
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
2129
+ SQL (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
2130
+ SQL (0.5ms) ROLLBACK
2131
+ SQL (0.1ms) SET NAMES 'utf8'
2132
+ SQL (0.1ms) SET SQL_AUTO_IS_NULL=0
2133
+ SQL (0.3ms) SHOW TABLES
2134
+ SQL (0.9ms) DROP TABLE `account_settings`
2135
+ SQL (163.5ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2136
+ SQL (0.4ms) SHOW TABLES
2137
+ SQL (1.1ms) DROP TABLE `accounts`
2138
+ SQL (18.4ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2139
+ SQL (0.4ms) SHOW TABLES
2140
+ SQL (0.2ms) SELECT version FROM `schema_migrations`
2141
+ SQL (0.4ms) SHOW TABLES
2142
+ Account Columns (0.9ms) SHOW FIELDS FROM `accounts`
2143
+ Unable to load account, underlying cause no such file to load -- account.rb
2144
+
2145
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
2146
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
2147
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
2148
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
2149
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
2150
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
2151
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
2152
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
2153
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
2154
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
2155
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
2156
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
2157
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
2158
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
2159
+ ./test/test_property_sets.rb:15:in `__bind_1294698772_574823'
2160
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
2161
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
2162
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
2163
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
2164
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
2165
+ ./test/test_property_sets.rb:14
2166
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
2167
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2168
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
2169
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2170
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
2171
+
2172
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
2173
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
2174
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
2175
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
2176
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
2177
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
2178
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
2179
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
2180
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
2181
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
2182
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
2183
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
2184
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
2185
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
2186
+ ./test/test_property_sets.rb:15:in `__bind_1294698772_574823'
2187
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
2188
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
2189
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
2190
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
2191
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
2192
+ ./test/test_property_sets.rb:14
2193
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
2194
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2195
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
2196
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2197
+ SQL (0.2ms) BEGIN
2198
+ SQL (0.1ms) SAVEPOINT active_record_1
2199
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:52', '2011-01-10 14:32:52')
2200
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2201
+ SQL (0.2ms) SAVEPOINT active_record_1
2202
+ Account Load (0.3ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
2203
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
2204
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2205
+ SQL (0.2ms) SAVEPOINT active_record_1
2206
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
2207
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'bar' AND `account_settings`.`account_id` = 2) LIMIT 1
2208
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
2209
+ SQL (0.0ms) SAVEPOINT active_record_1
2210
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
2211
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'bar' AND `account_settings`.`account_id` = 2) LIMIT 1
2212
+ SQL (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
2213
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
2214
+ SQL (0.2ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
2215
+ SQL (0.5ms) ROLLBACK
2216
+ SQL (0.1ms) BEGIN
2217
+ SQL (0.2ms) SAVEPOINT active_record_1
2218
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:52', '2011-01-10 14:32:52')
2219
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2220
+ AccountSetting Load (0.4ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
2221
+ SQL (0.1ms) SAVEPOINT active_record_1
2222
+ AccountSetting Load (0.4ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3) LIMIT 1
2223
+ Account Update (0.4ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:32:52' WHERE `id` = 3
2224
+ AccountSetting Create (0.3ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:32:52', '2011-01-10 14:32:52', 3, '1')
2225
+ AccountSetting Load (0.4ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
2226
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2227
+ SQL (0.2ms) SAVEPOINT active_record_1
2228
+ Account Load (0.2ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 3) 
2229
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3 AND `account_settings`.id <> 730411615) LIMIT 1
2230
+ AccountSetting Update (0.2ms) UPDATE `account_settings` SET `updated_at` = '2011-01-10 14:32:52', `value` = '2' WHERE `id` = 730411615
2231
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2232
+ SQL (0.4ms) ROLLBACK
2233
+ SQL (0.1ms) BEGIN
2234
+ SQL (0.1ms) SAVEPOINT active_record_1
2235
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:52', '2011-01-10 14:32:52')
2236
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2237
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2238
+ SQL (0.1ms) SAVEPOINT active_record_1
2239
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 4) LIMIT 1
2240
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:32:52' WHERE `id` = 4
2241
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:32:52', '2011-01-10 14:32:52', 4, '1')
2242
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2243
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2244
+ SQL (0.2ms) SAVEPOINT active_record_1
2245
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 4) 
2246
+ Account Update (0.1ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:32:52' WHERE `id` = 4
2247
+ AccountSetting Destroy (0.1ms) DELETE FROM `account_settings` WHERE `id` = 730411616
2248
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2249
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2250
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2251
+ SQL (0.4ms) ROLLBACK
2252
+ SQL (0.1ms) BEGIN
2253
+ SQL (0.1ms) SAVEPOINT active_record_1
2254
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:52', '2011-01-10 14:32:52')
2255
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2256
+ SQL (0.2ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
2257
+ SQL (0.3ms) ROLLBACK
2258
+ SQL (0.1ms) BEGIN
2259
+ SQL (0.0ms) SAVEPOINT active_record_1
2260
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:52', '2011-01-10 14:32:52')
2261
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2262
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 6) 
2263
+ SQL (0.3ms) ROLLBACK
2264
+ SQL (0.1ms) BEGIN
2265
+ SQL (0.1ms) SAVEPOINT active_record_1
2266
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:52', '2011-01-10 14:32:52')
2267
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2268
+ SQL (0.2ms) ROLLBACK
2269
+ SQL (0.1ms) BEGIN
2270
+ SQL (0.1ms) SAVEPOINT active_record_1
2271
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:52', '2011-01-10 14:32:52')
2272
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2273
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
2274
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hel_lo' AND `account_settings`.`account_id` = 8) LIMIT 1
2275
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hell0' AND `account_settings`.`account_id` = 8) LIMIT 1
2276
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY '_hello' AND `account_settings`.`account_id` = 8) LIMIT 1
2277
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
2278
+ SQL (0.3ms) ROLLBACK
2279
+ SQL (0.1ms) BEGIN
2280
+ SQL (0.1ms) SAVEPOINT active_record_1
2281
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:32:52', '2011-01-10 14:32:52')
2282
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2283
+ SQL (0.2ms) SAVEPOINT active_record_1
2284
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
2285
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:32:52' WHERE `id` = 9
2286
+ AccountSetting Create (0.1ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('unique', '2011-01-10 14:32:52', '2011-01-10 14:32:52', 9, NULL)
2287
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 9) 
2288
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2289
+ SQL (0.1ms) SAVEPOINT active_record_1
2290
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
2291
+ SQL (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
2292
+ SQL (0.6ms) ROLLBACK
2293
+ SQL (0.2ms) SET NAMES 'utf8'
2294
+ SQL (0.1ms) SET SQL_AUTO_IS_NULL=0
2295
+ SQL (0.3ms) SHOW TABLES
2296
+ SQL (0.9ms) DROP TABLE `account_settings`
2297
+ SQL (185.8ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2298
+ SQL (0.4ms) SHOW TABLES
2299
+ SQL (0.9ms) DROP TABLE `accounts`
2300
+ SQL (12.3ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2301
+ SQL (0.3ms) SHOW TABLES
2302
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
2303
+ SQL (0.4ms) SHOW TABLES
2304
+ Account Columns (1.2ms) SHOW FIELDS FROM `accounts`
2305
+ Unable to load account, underlying cause no such file to load -- account.rb
2306
+
2307
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
2308
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
2309
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
2310
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
2311
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
2312
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
2313
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
2314
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
2315
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
2316
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
2317
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
2318
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
2319
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
2320
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
2321
+ ./test/test_property_sets.rb:15:in `__bind_1294698883_797089'
2322
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
2323
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
2324
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
2325
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
2326
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
2327
+ ./test/test_property_sets.rb:14
2328
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
2329
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2330
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
2331
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2332
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
2333
+
2334
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
2335
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
2336
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
2337
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
2338
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
2339
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
2340
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
2341
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
2342
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
2343
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
2344
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
2345
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
2346
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
2347
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
2348
+ ./test/test_property_sets.rb:15:in `__bind_1294698883_797089'
2349
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
2350
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
2351
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
2352
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
2353
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
2354
+ ./test/test_property_sets.rb:14
2355
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
2356
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2357
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
2358
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2359
+ SQL (0.1ms) BEGIN
2360
+ SQL (0.2ms) SAVEPOINT active_record_1
2361
+ Account Create (0.4ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:34:43', '2011-01-10 14:34:43')
2362
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2363
+ SQL (0.1ms) SAVEPOINT active_record_1
2364
+ Account Load (0.3ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
2365
+ AccountSetting Load (0.4ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
2366
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2367
+ SQL (0.0ms) SAVEPOINT active_record_1
2368
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
2369
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'bar' AND `account_settings`.`account_id` = 2) LIMIT 1
2370
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
2371
+ SQL (0.1ms) SAVEPOINT active_record_1
2372
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
2373
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'bar' AND `account_settings`.`account_id` = 2) LIMIT 1
2374
+ SQL (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2375
+ SQL (0.5ms) ROLLBACK
2376
+ SQL (0.1ms) BEGIN
2377
+ SQL (0.0ms) SAVEPOINT active_record_1
2378
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:34:43', '2011-01-10 14:34:43')
2379
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
2380
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
2381
+ SQL (0.2ms) SAVEPOINT active_record_1
2382
+ AccountSetting Load (0.4ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3) LIMIT 1
2383
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:34:43' WHERE `id` = 3
2384
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:34:43', '2011-01-10 14:34:43', 3, '1')
2385
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
2386
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2387
+ SQL (0.2ms) SAVEPOINT active_record_1
2388
+ Account Load (0.2ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 3) 
2389
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3 AND `account_settings`.id <> 730411615) LIMIT 1
2390
+ AccountSetting Update (0.1ms) UPDATE `account_settings` SET `updated_at` = '2011-01-10 14:34:43', `value` = '2' WHERE `id` = 730411615
2391
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
2392
+ SQL (0.4ms) ROLLBACK
2393
+ SQL (0.1ms) BEGIN
2394
+ SQL (0.1ms) SAVEPOINT active_record_1
2395
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:34:43', '2011-01-10 14:34:43')
2396
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2397
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2398
+ SQL (0.1ms) SAVEPOINT active_record_1
2399
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 4) LIMIT 1
2400
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:34:43' WHERE `id` = 4
2401
+ AccountSetting Create (0.1ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:34:43', '2011-01-10 14:34:43', 4, '1')
2402
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2403
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
2404
+ SQL (0.0ms) SAVEPOINT active_record_1
2405
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 4) 
2406
+ Account Update (0.1ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:34:43' WHERE `id` = 4
2407
+ AccountSetting Destroy (0.1ms) DELETE FROM `account_settings` WHERE `id` = 730411616
2408
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2409
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2410
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2411
+ SQL (0.4ms) ROLLBACK
2412
+ SQL (0.1ms) BEGIN
2413
+ SQL (0.1ms) SAVEPOINT active_record_1
2414
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:34:43', '2011-01-10 14:34:43')
2415
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2416
+ SQL (0.1ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
2417
+ SQL (0.4ms) ROLLBACK
2418
+ SQL (0.0ms) BEGIN
2419
+ SQL (0.0ms) SAVEPOINT active_record_1
2420
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:34:43', '2011-01-10 14:34:43')
2421
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2422
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 6) 
2423
+ SQL (0.5ms) ROLLBACK
2424
+ SQL (0.0ms) BEGIN
2425
+ SQL (0.0ms) SAVEPOINT active_record_1
2426
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:34:43', '2011-01-10 14:34:43')
2427
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
2428
+ SQL (0.3ms) ROLLBACK
2429
+ SQL (0.0ms) BEGIN
2430
+ SQL (0.0ms) SAVEPOINT active_record_1
2431
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:34:43', '2011-01-10 14:34:43')
2432
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
2433
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
2434
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hel_lo' AND `account_settings`.`account_id` = 8) LIMIT 1
2435
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hell0' AND `account_settings`.`account_id` = 8) LIMIT 1
2436
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY '_hello' AND `account_settings`.`account_id` = 8) LIMIT 1
2437
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
2438
+ SQL (0.4ms) ROLLBACK
2439
+ SQL (0.0ms) BEGIN
2440
+ SQL (0.0ms) SAVEPOINT active_record_1
2441
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:34:43', '2011-01-10 14:34:43')
2442
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2443
+ SQL (0.0ms) SAVEPOINT active_record_1
2444
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
2445
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:34:43' WHERE `id` = 9
2446
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('unique', '2011-01-10 14:34:43', '2011-01-10 14:34:43', 9, NULL)
2447
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 9) 
2448
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2449
+ SQL (0.1ms) SAVEPOINT active_record_1
2450
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
2451
+ SQL (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
2452
+ SQL (0.6ms) ROLLBACK
2453
+ SQL (0.1ms) SET NAMES 'utf8'
2454
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
2455
+ SQL (0.9ms) SHOW TABLES
2456
+ SQL (0.9ms) DROP TABLE `account_settings`
2457
+ SQL (39.9ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2458
+ SQL (0.4ms) SHOW TABLES
2459
+ SQL (1.0ms) DROP TABLE `accounts`
2460
+ SQL (20.6ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2461
+ SQL (0.4ms) SHOW TABLES
2462
+ SQL (0.2ms) SELECT version FROM `schema_migrations`
2463
+ SQL (0.4ms) SHOW TABLES
2464
+ Account Columns (0.9ms) SHOW FIELDS FROM `accounts`
2465
+ Unable to load account, underlying cause no such file to load -- account.rb
2466
+
2467
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
2468
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
2469
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
2470
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
2471
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
2472
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
2473
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
2474
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
2475
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
2476
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
2477
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
2478
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
2479
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
2480
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
2481
+ ./test/test_property_sets.rb:15:in `__bind_1294699269_599070'
2482
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
2483
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
2484
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
2485
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
2486
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
2487
+ ./test/test_property_sets.rb:14
2488
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
2489
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2490
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
2491
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2492
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
2493
+
2494
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
2495
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
2496
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
2497
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
2498
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
2499
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
2500
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
2501
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
2502
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
2503
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
2504
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
2505
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
2506
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
2507
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
2508
+ ./test/test_property_sets.rb:15:in `__bind_1294699269_599070'
2509
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
2510
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
2511
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
2512
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
2513
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
2514
+ ./test/test_property_sets.rb:14
2515
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
2516
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2517
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
2518
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2519
+ SQL (0.2ms) BEGIN
2520
+ SQL (0.2ms) SAVEPOINT active_record_1
2521
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:41:09', '2011-01-10 14:41:09')
2522
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2523
+ SQL (0.2ms) SAVEPOINT active_record_1
2524
+ Account Load (0.3ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
2525
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
2526
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2527
+ SQL (0.2ms) SAVEPOINT active_record_1
2528
+ Account Load (0.2ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
2529
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'bar' AND `account_settings`.`account_id` = 2) LIMIT 1
2530
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2531
+ SQL (0.2ms) SAVEPOINT active_record_1
2532
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
2533
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'bar' AND `account_settings`.`account_id` = 2) LIMIT 1
2534
+ SQL (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
2535
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
2536
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
2537
+ SQL (0.2ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
2538
+ SQL (0.5ms) ROLLBACK
2539
+ SQL (0.2ms) BEGIN
2540
+ SQL (0.1ms) SAVEPOINT active_record_1
2541
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:41:09', '2011-01-10 14:41:09')
2542
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2543
+ AccountSetting Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
2544
+ SQL (0.3ms) SAVEPOINT active_record_1
2545
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3) LIMIT 1
2546
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:41:09' WHERE `id` = 3
2547
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:41:09', '2011-01-10 14:41:09', 3, '1')
2548
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
2549
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2550
+ SQL (0.2ms) SAVEPOINT active_record_1
2551
+ Account Load (0.2ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 3) 
2552
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3 AND `account_settings`.id <> 730411615) LIMIT 1
2553
+ AccountSetting Update (0.2ms) UPDATE `account_settings` SET `updated_at` = '2011-01-10 14:41:09', `value` = '2' WHERE `id` = 730411615
2554
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2555
+ SQL (0.5ms) ROLLBACK
2556
+ SQL (0.0ms) BEGIN
2557
+ SQL (0.0ms) SAVEPOINT active_record_1
2558
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:41:09', '2011-01-10 14:41:09')
2559
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2560
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2561
+ SQL (0.2ms) SAVEPOINT active_record_1
2562
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 4) LIMIT 1
2563
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:41:09' WHERE `id` = 4
2564
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:41:09', '2011-01-10 14:41:09', 4, '1')
2565
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2566
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2567
+ SQL (0.1ms) SAVEPOINT active_record_1
2568
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 4) 
2569
+ Account Update (0.1ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:41:09' WHERE `id` = 4
2570
+ AccountSetting Destroy (0.1ms) DELETE FROM `account_settings` WHERE `id` = 730411616
2571
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2572
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
2573
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2574
+ SQL (0.4ms) ROLLBACK
2575
+ SQL (0.0ms) BEGIN
2576
+ SQL (0.0ms) SAVEPOINT active_record_1
2577
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:41:09', '2011-01-10 14:41:09')
2578
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2579
+ SQL (0.1ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
2580
+ SQL (0.3ms) ROLLBACK
2581
+ SQL (0.1ms) BEGIN
2582
+ SQL (0.0ms) SAVEPOINT active_record_1
2583
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:41:09', '2011-01-10 14:41:09')
2584
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2585
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 6) 
2586
+ SQL (0.5ms) ROLLBACK
2587
+ SQL (0.1ms) BEGIN
2588
+ SQL (0.1ms) SAVEPOINT active_record_1
2589
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:41:09', '2011-01-10 14:41:09')
2590
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2591
+ SQL (0.4ms) ROLLBACK
2592
+ SQL (0.0ms) BEGIN
2593
+ SQL (0.0ms) SAVEPOINT active_record_1
2594
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:41:09', '2011-01-10 14:41:09')
2595
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
2596
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
2597
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hel_lo' AND `account_settings`.`account_id` = 8) LIMIT 1
2598
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hell0' AND `account_settings`.`account_id` = 8) LIMIT 1
2599
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY '_hello' AND `account_settings`.`account_id` = 8) LIMIT 1
2600
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
2601
+ SQL (0.5ms) ROLLBACK
2602
+ SQL (0.0ms) BEGIN
2603
+ SQL (0.0ms) SAVEPOINT active_record_1
2604
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:41:09', '2011-01-10 14:41:09')
2605
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2606
+ SQL (0.1ms) SAVEPOINT active_record_1
2607
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
2608
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:41:09' WHERE `id` = 9
2609
+ AccountSetting Create (0.1ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('unique', '2011-01-10 14:41:09', '2011-01-10 14:41:09', 9, NULL)
2610
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 9) 
2611
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
2612
+ SQL (0.0ms) SAVEPOINT active_record_1
2613
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
2614
+ SQL (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
2615
+ SQL (0.4ms) ROLLBACK
2616
+ SQL (0.2ms) SET NAMES 'utf8'
2617
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
2618
+ SQL (0.3ms) SHOW TABLES
2619
+ SQL (2.1ms) DROP TABLE `account_settings`
2620
+ SQL (198.9ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2621
+ SQL (0.4ms) SHOW TABLES
2622
+ SQL (1.1ms) DROP TABLE `accounts`
2623
+ SQL (20.3ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2624
+ SQL (0.4ms) SHOW TABLES
2625
+ SQL (0.2ms) SELECT version FROM `schema_migrations`
2626
+ SQL (0.4ms) SHOW TABLES
2627
+ Account Columns (0.8ms) SHOW FIELDS FROM `accounts`
2628
+ Unable to load account, underlying cause no such file to load -- account.rb
2629
+
2630
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
2631
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
2632
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
2633
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
2634
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
2635
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
2636
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
2637
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
2638
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
2639
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
2640
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
2641
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
2642
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
2643
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
2644
+ ./test/test_property_sets.rb:15:in `__bind_1294699350_6040'
2645
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
2646
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
2647
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
2648
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
2649
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
2650
+ ./test/test_property_sets.rb:14
2651
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
2652
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2653
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
2654
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2655
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
2656
+
2657
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
2658
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
2659
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
2660
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
2661
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
2662
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
2663
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
2664
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
2665
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
2666
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
2667
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
2668
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
2669
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
2670
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
2671
+ ./test/test_property_sets.rb:15:in `__bind_1294699350_6040'
2672
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
2673
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
2674
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
2675
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
2676
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
2677
+ ./test/test_property_sets.rb:14
2678
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
2679
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2680
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
2681
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2682
+ SQL (0.1ms) BEGIN
2683
+ SQL (0.1ms) SAVEPOINT active_record_1
2684
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:42:30', '2011-01-10 14:42:30')
2685
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2686
+ SQL (0.2ms) SAVEPOINT active_record_1
2687
+ Account Load (0.3ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
2688
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
2689
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:42:30' WHERE `id` = 2
2690
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:42:30', '2011-01-10 14:42:30', 2, '123')
2691
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
2692
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
2693
+ SQL (0.0ms) SAVEPOINT active_record_1
2694
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
2695
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'bar' AND `account_settings`.`account_id` = 2) LIMIT 1
2696
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:42:30' WHERE `id` = 2
2697
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('bar', '2011-01-10 14:42:30', '2011-01-10 14:42:30', 2, '456')
2698
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
2699
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2700
+ SQL (0.2ms) SAVEPOINT active_record_1
2701
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2702
+ Account Load (0.2ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
2703
+ SQL (0.2ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
2704
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
2705
+ SQL (0.4ms) ROLLBACK
2706
+ SQL (0.0ms) BEGIN
2707
+ SQL (0.0ms) SAVEPOINT active_record_1
2708
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:42:30', '2011-01-10 14:42:30')
2709
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2710
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
2711
+ SQL (0.2ms) SAVEPOINT active_record_1
2712
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3) LIMIT 1
2713
+ Account Update (0.4ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:42:30' WHERE `id` = 3
2714
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:42:30', '2011-01-10 14:42:30', 3, '1')
2715
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
2716
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2717
+ SQL (0.1ms) SAVEPOINT active_record_1
2718
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 3) 
2719
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3 AND `account_settings`.id <> 730411617) LIMIT 1
2720
+ AccountSetting Update (0.2ms) UPDATE `account_settings` SET `updated_at` = '2011-01-10 14:42:30', `value` = '2' WHERE `id` = 730411617
2721
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2722
+ SQL (0.4ms) ROLLBACK
2723
+ SQL (0.0ms) BEGIN
2724
+ SQL (0.0ms) SAVEPOINT active_record_1
2725
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:42:30', '2011-01-10 14:42:30')
2726
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2727
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2728
+ SQL (0.1ms) SAVEPOINT active_record_1
2729
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 4) LIMIT 1
2730
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:42:30' WHERE `id` = 4
2731
+ AccountSetting Create (0.1ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 14:42:30', '2011-01-10 14:42:30', 4, '1')
2732
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2733
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2734
+ SQL (0.2ms) SAVEPOINT active_record_1
2735
+ Account Load (0.2ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 4) 
2736
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:42:30' WHERE `id` = 4
2737
+ AccountSetting Destroy (0.2ms) DELETE FROM `account_settings` WHERE `id` = 730411618
2738
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2739
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2740
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
2741
+ SQL (0.5ms) ROLLBACK
2742
+ SQL (0.0ms) BEGIN
2743
+ SQL (0.0ms) SAVEPOINT active_record_1
2744
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:42:30', '2011-01-10 14:42:30')
2745
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2746
+ SQL (0.2ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
2747
+ SQL (0.3ms) ROLLBACK
2748
+ SQL (0.0ms) BEGIN
2749
+ SQL (0.1ms) SAVEPOINT active_record_1
2750
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:42:30', '2011-01-10 14:42:30')
2751
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2752
+ AccountSetting Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 6) 
2753
+ SQL (0.5ms) ROLLBACK
2754
+ SQL (0.0ms) BEGIN
2755
+ SQL (0.0ms) SAVEPOINT active_record_1
2756
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:42:30', '2011-01-10 14:42:30')
2757
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2758
+ SQL (0.3ms) ROLLBACK
2759
+ SQL (0.0ms) BEGIN
2760
+ SQL (0.0ms) SAVEPOINT active_record_1
2761
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:42:30', '2011-01-10 14:42:30')
2762
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
2763
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
2764
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hel_lo' AND `account_settings`.`account_id` = 8) LIMIT 1
2765
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hell0' AND `account_settings`.`account_id` = 8) LIMIT 1
2766
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY '_hello' AND `account_settings`.`account_id` = 8) LIMIT 1
2767
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
2768
+ SQL (0.4ms) ROLLBACK
2769
+ SQL (0.0ms) BEGIN
2770
+ SQL (0.0ms) SAVEPOINT active_record_1
2771
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 14:42:30', '2011-01-10 14:42:30')
2772
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2773
+ SQL (0.2ms) SAVEPOINT active_record_1
2774
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
2775
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 14:42:30' WHERE `id` = 9
2776
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('unique', '2011-01-10 14:42:30', '2011-01-10 14:42:30', 9, NULL)
2777
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 9) 
2778
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2779
+ SQL (0.1ms) SAVEPOINT active_record_1
2780
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
2781
+ SQL (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
2782
+ SQL (0.5ms) ROLLBACK
2783
+ SQL (0.2ms) SET NAMES 'utf8'
2784
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
2785
+ SQL (1.4ms) SHOW TABLES
2786
+ SQL (1.7ms) DROP TABLE `account_settings`
2787
+ SQL (197.1ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2788
+ SQL (0.4ms) SHOW TABLES
2789
+ SQL (1.0ms) DROP TABLE `accounts`
2790
+ SQL (23.3ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2791
+ SQL (0.3ms) SHOW TABLES
2792
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
2793
+ SQL (0.4ms) SHOW TABLES
2794
+ Account Columns (2.4ms) SHOW FIELDS FROM `accounts`
2795
+ SQL (0.5ms) SHOW TABLES
2796
+ Unable to load account, underlying cause no such file to load -- account.rb
2797
+
2798
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
2799
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
2800
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
2801
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
2802
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
2803
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
2804
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
2805
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
2806
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
2807
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
2808
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
2809
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
2810
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
2811
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
2812
+ ./test/test_property_sets.rb:20:in `__bind_1294700534_734072'
2813
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
2814
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
2815
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
2816
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
2817
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
2818
+ ./test/test_property_sets.rb:19
2819
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
2820
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2821
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
2822
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2823
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
2824
+
2825
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
2826
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
2827
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
2828
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
2829
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
2830
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
2831
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
2832
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
2833
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
2834
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
2835
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
2836
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
2837
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
2838
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
2839
+ ./test/test_property_sets.rb:20:in `__bind_1294700534_734072'
2840
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
2841
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
2842
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
2843
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
2844
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
2845
+ ./test/test_property_sets.rb:19
2846
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
2847
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2848
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
2849
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2850
+ Unable to load account_text, underlying cause no such file to load -- account_text.rb
2851
+
2852
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
2853
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
2854
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
2855
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
2856
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
2857
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
2858
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
2859
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
2860
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
2861
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
2862
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
2863
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
2864
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
2865
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
2866
+ ./test/test_property_sets.rb:20:in `__bind_1294700534_734072'
2867
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
2868
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
2869
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
2870
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
2871
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
2872
+ ./test/test_property_sets.rb:19
2873
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
2874
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2875
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
2876
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2877
+ SQL (0.2ms) SET NAMES 'utf8'
2878
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
2879
+ SQL (0.3ms) SHOW TABLES
2880
+ SQL (0.8ms) DROP TABLE `account_settings`
2881
+ SQL (184.6ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2882
+ SQL (0.4ms) SHOW TABLES
2883
+ SQL (9.6ms) CREATE TABLE `account_texts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2884
+ SQL (0.3ms) SHOW TABLES
2885
+ SQL (0.9ms) DROP TABLE `accounts`
2886
+ SQL (9.1ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2887
+ SQL (0.3ms) SHOW TABLES
2888
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
2889
+ SQL (0.4ms) SHOW TABLES
2890
+ Account Columns (1.0ms) SHOW FIELDS FROM `accounts`
2891
+ SQL (0.5ms) SHOW TABLES
2892
+ Unable to load account, underlying cause no such file to load -- account.rb
2893
+
2894
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
2895
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
2896
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
2897
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
2898
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
2899
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
2900
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
2901
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
2902
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
2903
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
2904
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
2905
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
2906
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
2907
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
2908
+ ./test/test_property_sets.rb:20:in `__bind_1294700560_25253'
2909
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
2910
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
2911
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
2912
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
2913
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
2914
+ ./test/test_property_sets.rb:19
2915
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
2916
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2917
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
2918
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2919
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
2920
+
2921
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
2922
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
2923
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
2924
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
2925
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
2926
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
2927
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
2928
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
2929
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
2930
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
2931
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
2932
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
2933
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
2934
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
2935
+ ./test/test_property_sets.rb:20:in `__bind_1294700560_25253'
2936
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
2937
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
2938
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
2939
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
2940
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
2941
+ ./test/test_property_sets.rb:19
2942
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
2943
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2944
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
2945
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2946
+ Unable to load account_text, underlying cause no such file to load -- account_text.rb
2947
+
2948
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
2949
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
2950
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
2951
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
2952
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
2953
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
2954
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
2955
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
2956
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
2957
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
2958
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
2959
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
2960
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
2961
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
2962
+ ./test/test_property_sets.rb:20:in `__bind_1294700560_25253'
2963
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
2964
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
2965
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
2966
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
2967
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
2968
+ ./test/test_property_sets.rb:19
2969
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
2970
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2971
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
2972
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
2973
+ SQL (0.0ms) BEGIN
2974
+ SQL (0.2ms) SAVEPOINT active_record_1
2975
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:02:40', '2011-01-10 15:02:40')
2976
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2977
+ SQL (0.2ms) SAVEPOINT active_record_1
2978
+ Account Load (0.4ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
2979
+ AccountSetting Load (0.4ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
2980
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:02:40' WHERE `id` = 2
2981
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 15:02:40', '2011-01-10 15:02:40', 2, '123')
2982
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
2983
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2984
+ SQL (0.0ms) SAVEPOINT active_record_1
2985
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
2986
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'bar' AND `account_settings`.`account_id` = 2) LIMIT 1
2987
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:02:40' WHERE `id` = 2
2988
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('bar', '2011-01-10 15:02:40', '2011-01-10 15:02:40', 2, '456')
2989
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
2990
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
2991
+ SQL (0.2ms) SAVEPOINT active_record_1
2992
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
2993
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
2994
+ SQL (0.1ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
2995
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
2996
+ SQL (0.4ms) ROLLBACK
2997
+ SQL (0.1ms) BEGIN
2998
+ SQL (0.2ms) SAVEPOINT active_record_1
2999
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:02:40', '2011-01-10 15:02:40')
3000
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3001
+ AccountSetting Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
3002
+ SQL (0.2ms) SAVEPOINT active_record_1
3003
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3) LIMIT 1
3004
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:02:40' WHERE `id` = 3
3005
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 15:02:40', '2011-01-10 15:02:40', 3, '1')
3006
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
3007
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3008
+ SQL (0.1ms) SAVEPOINT active_record_1
3009
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 3) 
3010
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3 AND `account_settings`.id <> 730411617) LIMIT 1
3011
+ AccountSetting Update (0.2ms) UPDATE `account_settings` SET `updated_at` = '2011-01-10 15:02:40', `value` = '2' WHERE `id` = 730411617
3012
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3013
+ SQL (0.4ms) ROLLBACK
3014
+ SQL (0.1ms) BEGIN
3015
+ SQL (0.1ms) SAVEPOINT active_record_1
3016
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:02:40', '2011-01-10 15:02:40')
3017
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3018
+ AccountSetting Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
3019
+ SQL (0.2ms) SAVEPOINT active_record_1
3020
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 4) LIMIT 1
3021
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:02:40' WHERE `id` = 4
3022
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 15:02:40', '2011-01-10 15:02:40', 4, '1')
3023
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
3024
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3025
+ SQL (0.1ms) SAVEPOINT active_record_1
3026
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 4) 
3027
+ Account Update (0.1ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:02:40' WHERE `id` = 4
3028
+ AccountSetting Destroy (0.2ms) DELETE FROM `account_settings` WHERE `id` = 730411618
3029
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
3030
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3031
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
3032
+ SQL (0.4ms) ROLLBACK
3033
+ SQL (0.0ms) BEGIN
3034
+ SQL (0.0ms) SAVEPOINT active_record_1
3035
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:02:40', '2011-01-10 15:02:40')
3036
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
3037
+ SQL (0.1ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
3038
+ SQL (0.3ms) ROLLBACK
3039
+ SQL (0.0ms) BEGIN
3040
+ SQL (0.0ms) SAVEPOINT active_record_1
3041
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:02:40', '2011-01-10 15:02:40')
3042
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3043
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 6) 
3044
+ SQL (0.3ms) ROLLBACK
3045
+ SQL (0.0ms) BEGIN
3046
+ SQL (0.0ms) SAVEPOINT active_record_1
3047
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:02:40', '2011-01-10 15:02:40')
3048
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
3049
+ SQL (0.3ms) ROLLBACK
3050
+ SQL (0.0ms) BEGIN
3051
+ SQL (0.0ms) SAVEPOINT active_record_1
3052
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:02:40', '2011-01-10 15:02:40')
3053
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3054
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
3055
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hel_lo' AND `account_settings`.`account_id` = 8) LIMIT 1
3056
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hell0' AND `account_settings`.`account_id` = 8) LIMIT 1
3057
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY '_hello' AND `account_settings`.`account_id` = 8) LIMIT 1
3058
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
3059
+ SQL (0.3ms) ROLLBACK
3060
+ SQL (0.1ms) BEGIN
3061
+ SQL (0.0ms) SAVEPOINT active_record_1
3062
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:02:40', '2011-01-10 15:02:40')
3063
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3064
+ SQL (0.1ms) SAVEPOINT active_record_1
3065
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
3066
+ Account Update (0.4ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:02:40' WHERE `id` = 9
3067
+ AccountSetting Create (0.4ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('unique', '2011-01-10 15:02:40', '2011-01-10 15:02:40', 9, NULL)
3068
+ AccountSetting Load (0.4ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 9) 
3069
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3070
+ SQL (0.2ms) SAVEPOINT active_record_1
3071
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
3072
+ SQL (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
3073
+ SQL (0.4ms) ROLLBACK
3074
+ SQL (0.2ms) SET NAMES 'utf8'
3075
+ SQL (0.1ms) SET SQL_AUTO_IS_NULL=0
3076
+ SQL (0.4ms) SHOW TABLES
3077
+ SQL (2.2ms) DROP TABLE `account_settings`
3078
+ SQL (190.5ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
3079
+ SQL (0.4ms) SHOW TABLES
3080
+ SQL (1.1ms) DROP TABLE `account_texts`
3081
+ SQL (11.5ms) CREATE TABLE `account_texts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
3082
+ SQL (0.4ms) SHOW TABLES
3083
+ SQL (1.0ms) DROP TABLE `accounts`
3084
+ SQL (8.8ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
3085
+ SQL (0.4ms) SHOW TABLES
3086
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
3087
+ SQL (0.4ms) SHOW TABLES
3088
+ Account Columns (1.5ms) SHOW FIELDS FROM `accounts`
3089
+ SQL (0.5ms) SHOW TABLES
3090
+ Unable to load account, underlying cause no such file to load -- account.rb
3091
+
3092
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
3093
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
3094
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
3095
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
3096
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
3097
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
3098
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
3099
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
3100
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
3101
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
3102
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
3103
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
3104
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
3105
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
3106
+ ./test/test_property_sets.rb:20:in `__bind_1294700585_752205'
3107
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
3108
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
3109
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
3110
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
3111
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
3112
+ ./test/test_property_sets.rb:19
3113
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
3114
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3115
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
3116
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3117
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
3118
+
3119
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
3120
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
3121
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
3122
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
3123
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
3124
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
3125
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
3126
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
3127
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
3128
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
3129
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
3130
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
3131
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
3132
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
3133
+ ./test/test_property_sets.rb:20:in `__bind_1294700585_752205'
3134
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
3135
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
3136
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
3137
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
3138
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
3139
+ ./test/test_property_sets.rb:19
3140
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
3141
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3142
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
3143
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3144
+ Unable to load account_text, underlying cause no such file to load -- account_text.rb
3145
+
3146
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
3147
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
3148
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
3149
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
3150
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
3151
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
3152
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
3153
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
3154
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
3155
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
3156
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
3157
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
3158
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
3159
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
3160
+ ./test/test_property_sets.rb:20:in `__bind_1294700585_752205'
3161
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
3162
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
3163
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
3164
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
3165
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
3166
+ ./test/test_property_sets.rb:19
3167
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
3168
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3169
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
3170
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3171
+ SQL (0.0ms) BEGIN
3172
+ SQL (0.1ms) SAVEPOINT active_record_1
3173
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:03:05', '2011-01-10 15:03:05')
3174
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3175
+ SQL (0.2ms) SAVEPOINT active_record_1
3176
+ Account Load (0.3ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
3177
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
3178
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:03:05' WHERE `id` = 2
3179
+ AccountSetting Create (0.4ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 15:03:05', '2011-01-10 15:03:05', 2, '123')
3180
+ AccountSetting Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
3181
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3182
+ SQL (0.1ms) SAVEPOINT active_record_1
3183
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
3184
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'bar' AND `account_settings`.`account_id` = 2) LIMIT 1
3185
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:03:05' WHERE `id` = 2
3186
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('bar', '2011-01-10 15:03:05', '2011-01-10 15:03:05', 2, '456')
3187
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
3188
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3189
+ SQL (0.2ms) SAVEPOINT active_record_1
3190
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3191
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
3192
+ SQL (0.1ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
3193
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
3194
+ SQL (0.3ms) ROLLBACK
3195
+ SQL (0.0ms) BEGIN
3196
+ SQL (0.1ms) SAVEPOINT active_record_1
3197
+ Account Create (0.3ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:03:05', '2011-01-10 15:03:05')
3198
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3199
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
3200
+ SQL (0.1ms) SAVEPOINT active_record_1
3201
+ AccountSetting Load (0.4ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3) LIMIT 1
3202
+ Account Update (0.4ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:03:05' WHERE `id` = 3
3203
+ AccountSetting Create (0.4ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 15:03:05', '2011-01-10 15:03:05', 3, '1')
3204
+ AccountSetting Load (0.4ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
3205
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3206
+ SQL (0.1ms) SAVEPOINT active_record_1
3207
+ Account Load (0.2ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 3) 
3208
+ AccountSetting Load (0.4ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3 AND `account_settings`.id <> 730411617) LIMIT 1
3209
+ AccountSetting Update (0.4ms) UPDATE `account_settings` SET `updated_at` = '2011-01-10 15:03:05', `value` = '2' WHERE `id` = 730411617
3210
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3211
+ SQL (0.4ms) ROLLBACK
3212
+ SQL (0.1ms) BEGIN
3213
+ SQL (0.0ms) SAVEPOINT active_record_1
3214
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:03:05', '2011-01-10 15:03:05')
3215
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
3216
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
3217
+ SQL (0.1ms) SAVEPOINT active_record_1
3218
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 4) LIMIT 1
3219
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:03:05' WHERE `id` = 4
3220
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 15:03:05', '2011-01-10 15:03:05', 4, '1')
3221
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
3222
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3223
+ SQL (0.0ms) SAVEPOINT active_record_1
3224
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 4) 
3225
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:03:05' WHERE `id` = 4
3226
+ AccountSetting Destroy (0.2ms) DELETE FROM `account_settings` WHERE `id` = 730411618
3227
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
3228
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3229
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
3230
+ SQL (0.3ms) ROLLBACK
3231
+ SQL (0.0ms) BEGIN
3232
+ SQL (0.0ms) SAVEPOINT active_record_1
3233
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:03:05', '2011-01-10 15:03:05')
3234
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3235
+ SQL (0.1ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
3236
+ SQL (0.1ms) SELECT count(*) AS count_all FROM `account_texts` WHERE (`account_texts`.account_id = 5) 
3237
+ SQL (0.3ms) ROLLBACK
3238
+ SQL (0.1ms) BEGIN
3239
+ SQL (0.0ms) SAVEPOINT active_record_1
3240
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:03:05', '2011-01-10 15:03:05')
3241
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3242
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 6) 
3243
+ SQL (0.5ms) ROLLBACK
3244
+ SQL (0.0ms) BEGIN
3245
+ SQL (0.1ms) SAVEPOINT active_record_1
3246
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:03:05', '2011-01-10 15:03:05')
3247
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3248
+ SQL (0.5ms) ROLLBACK
3249
+ SQL (0.0ms) BEGIN
3250
+ SQL (0.0ms) SAVEPOINT active_record_1
3251
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:03:05', '2011-01-10 15:03:05')
3252
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
3253
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
3254
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hel_lo' AND `account_settings`.`account_id` = 8) LIMIT 1
3255
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hell0' AND `account_settings`.`account_id` = 8) LIMIT 1
3256
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY '_hello' AND `account_settings`.`account_id` = 8) LIMIT 1
3257
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
3258
+ SQL (0.5ms) ROLLBACK
3259
+ SQL (0.0ms) BEGIN
3260
+ SQL (0.0ms) SAVEPOINT active_record_1
3261
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:03:05', '2011-01-10 15:03:05')
3262
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3263
+ SQL (0.1ms) SAVEPOINT active_record_1
3264
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
3265
+ Account Update (0.1ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:03:05' WHERE `id` = 9
3266
+ AccountSetting Create (0.1ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('unique', '2011-01-10 15:03:05', '2011-01-10 15:03:05', 9, NULL)
3267
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 9) 
3268
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
3269
+ SQL (0.0ms) SAVEPOINT active_record_1
3270
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
3271
+ SQL (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
3272
+ SQL (0.6ms) ROLLBACK
3273
+ SQL (0.2ms) SET NAMES 'utf8'
3274
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
3275
+ SQL (1.6ms) SHOW TABLES
3276
+ SQL (1.7ms) DROP TABLE `account_settings`
3277
+ SQL (226.0ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
3278
+ SQL (0.4ms) SHOW TABLES
3279
+ SQL (0.9ms) DROP TABLE `account_texts`
3280
+ SQL (25.4ms) CREATE TABLE `account_texts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
3281
+ SQL (0.3ms) SHOW TABLES
3282
+ SQL (0.7ms) DROP TABLE `accounts`
3283
+ SQL (9.5ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
3284
+ SQL (0.4ms) SHOW TABLES
3285
+ SQL (0.2ms) SELECT version FROM `schema_migrations`
3286
+ SQL (0.4ms) SHOW TABLES
3287
+ Account Columns (2.0ms) SHOW FIELDS FROM `accounts`
3288
+ SQL (0.5ms) SHOW TABLES
3289
+ Unable to load account, underlying cause no such file to load -- account.rb
3290
+
3291
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
3292
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
3293
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
3294
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
3295
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
3296
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
3297
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
3298
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
3299
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
3300
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
3301
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
3302
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
3303
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
3304
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
3305
+ ./test/test_property_sets.rb:20:in `__bind_1294701766_860805'
3306
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
3307
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
3308
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
3309
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
3310
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
3311
+ ./test/test_property_sets.rb:19
3312
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
3313
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3314
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
3315
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3316
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
3317
+
3318
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
3319
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
3320
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
3321
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
3322
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
3323
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
3324
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
3325
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
3326
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
3327
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
3328
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
3329
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
3330
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
3331
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
3332
+ ./test/test_property_sets.rb:20:in `__bind_1294701766_860805'
3333
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
3334
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
3335
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
3336
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
3337
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
3338
+ ./test/test_property_sets.rb:19
3339
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
3340
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3341
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
3342
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3343
+ Unable to load account_text, underlying cause no such file to load -- account_text.rb
3344
+
3345
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
3346
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
3347
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
3348
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
3349
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
3350
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
3351
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
3352
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
3353
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
3354
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
3355
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
3356
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
3357
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
3358
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
3359
+ ./test/test_property_sets.rb:20:in `__bind_1294701766_860805'
3360
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
3361
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
3362
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
3363
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
3364
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
3365
+ ./test/test_property_sets.rb:19
3366
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
3367
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3368
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
3369
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3370
+ SQL (0.0ms) BEGIN
3371
+ SQL (0.2ms) SAVEPOINT active_record_1
3372
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:22:46', '2011-01-10 15:22:46')
3373
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3374
+ SQL (0.2ms) SAVEPOINT active_record_1
3375
+ Account Load (0.3ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
3376
+ AccountSetting Load (0.4ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
3377
+ Account Update (0.4ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:22:46' WHERE `id` = 2
3378
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 15:22:46', '2011-01-10 15:22:46', 2, '123')
3379
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
3380
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3381
+ SQL (0.0ms) SAVEPOINT active_record_1
3382
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
3383
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'bar' AND `account_settings`.`account_id` = 2) LIMIT 1
3384
+ Account Update (0.1ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:22:46' WHERE `id` = 2
3385
+ AccountSetting Create (0.1ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('bar', '2011-01-10 15:22:46', '2011-01-10 15:22:46', 2, '456')
3386
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
3387
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
3388
+ SQL (0.0ms) SAVEPOINT active_record_1
3389
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
3390
+ Account Load (0.2ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
3391
+ SQL (0.2ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
3392
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
3393
+ SQL (0.6ms) ROLLBACK
3394
+ SQL (0.1ms) BEGIN
3395
+ SQL (0.1ms) SAVEPOINT active_record_1
3396
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:22:46', '2011-01-10 15:22:46')
3397
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3398
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
3399
+ SQL (0.1ms) SAVEPOINT active_record_1
3400
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3) LIMIT 1
3401
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:22:46' WHERE `id` = 3
3402
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 15:22:46', '2011-01-10 15:22:46', 3, '1')
3403
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
3404
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3405
+ SQL (0.1ms) SELECT count(*) AS count_all FROM `account_texts` WHERE (`account_texts`.account_id = 3) 
3406
+ SQL (0.1ms) SAVEPOINT active_record_1
3407
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 3) 
3408
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3 AND `account_settings`.id <> 730411617) LIMIT 1
3409
+ AccountSetting Update (0.2ms) UPDATE `account_settings` SET `updated_at` = '2011-01-10 15:22:46', `value` = '2' WHERE `id` = 730411617
3410
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3411
+ SQL (0.4ms) ROLLBACK
3412
+ SQL (0.0ms) BEGIN
3413
+ SQL (0.0ms) SAVEPOINT active_record_1
3414
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:22:46', '2011-01-10 15:22:46')
3415
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
3416
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
3417
+ SQL (0.0ms) SAVEPOINT active_record_1
3418
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 4) LIMIT 1
3419
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:22:46' WHERE `id` = 4
3420
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 15:22:46', '2011-01-10 15:22:46', 4, '1')
3421
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
3422
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3423
+ SQL (0.2ms) SAVEPOINT active_record_1
3424
+ Account Load (0.2ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 4) 
3425
+ Account Update (0.1ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:22:46' WHERE `id` = 4
3426
+ AccountSetting Destroy (0.1ms) DELETE FROM `account_settings` WHERE `id` = 730411618
3427
+ AccountSetting Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
3428
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3429
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
3430
+ SQL (0.5ms) ROLLBACK
3431
+ SQL (0.0ms) BEGIN
3432
+ SQL (0.0ms) SAVEPOINT active_record_1
3433
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:22:46', '2011-01-10 15:22:46')
3434
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3435
+ SQL (0.2ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
3436
+ SQL (0.2ms) SELECT count(*) AS count_all FROM `account_texts` WHERE (`account_texts`.account_id = 5) 
3437
+ SQL (0.3ms) ROLLBACK
3438
+ SQL (0.0ms) BEGIN
3439
+ SQL (0.0ms) SAVEPOINT active_record_1
3440
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:22:46', '2011-01-10 15:22:46')
3441
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
3442
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 6) 
3443
+ SQL (0.5ms) ROLLBACK
3444
+ SQL (0.0ms) BEGIN
3445
+ SQL (0.0ms) SAVEPOINT active_record_1
3446
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:22:46', '2011-01-10 15:22:46')
3447
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3448
+ SQL (0.3ms) ROLLBACK
3449
+ SQL (0.0ms) BEGIN
3450
+ SQL (0.0ms) SAVEPOINT active_record_1
3451
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:22:46', '2011-01-10 15:22:46')
3452
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3453
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
3454
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hel_lo' AND `account_settings`.`account_id` = 8) LIMIT 1
3455
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hell0' AND `account_settings`.`account_id` = 8) LIMIT 1
3456
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY '_hello' AND `account_settings`.`account_id` = 8) LIMIT 1
3457
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
3458
+ SQL (0.4ms) ROLLBACK
3459
+ SQL (0.1ms) BEGIN
3460
+ SQL (0.1ms) SAVEPOINT active_record_1
3461
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:22:46', '2011-01-10 15:22:46')
3462
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3463
+ SQL (0.1ms) SAVEPOINT active_record_1
3464
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
3465
+ Account Update (0.1ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:22:46' WHERE `id` = 9
3466
+ AccountSetting Create (0.1ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('unique', '2011-01-10 15:22:46', '2011-01-10 15:22:46', 9, NULL)
3467
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 9) 
3468
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3469
+ SQL (0.0ms) SAVEPOINT active_record_1
3470
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
3471
+ SQL (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
3472
+ SQL (0.4ms) ROLLBACK
3473
+ SQL (0.2ms) SET NAMES 'utf8'
3474
+ SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
3475
+ SQL (0.5ms) SHOW TABLES
3476
+ SQL (1.4ms) DROP TABLE `account_settings`
3477
+ SQL (169.3ms) CREATE TABLE `account_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
3478
+ SQL (0.3ms) SHOW TABLES
3479
+ SQL (0.8ms) DROP TABLE `account_texts`
3480
+ SQL (12.5ms) CREATE TABLE `account_texts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `account_id` int(11), `name` varchar(255), `value` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
3481
+ SQL (0.3ms) SHOW TABLES
3482
+ SQL (0.8ms) DROP TABLE `accounts`
3483
+ SQL (9.1ms) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
3484
+ SQL (0.3ms) SHOW TABLES
3485
+ SQL (0.1ms) SELECT version FROM `schema_migrations`
3486
+ SQL (0.7ms) SHOW TABLES
3487
+ Account Columns (1.4ms) SHOW FIELDS FROM `accounts`
3488
+ SQL (0.4ms) SHOW TABLES
3489
+ Unable to load account, underlying cause no such file to load -- account.rb
3490
+
3491
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
3492
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
3493
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
3494
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
3495
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
3496
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
3497
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
3498
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
3499
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
3500
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
3501
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
3502
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
3503
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
3504
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
3505
+ ./test/test_property_sets.rb:20:in `__bind_1294701912_106634'
3506
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
3507
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
3508
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
3509
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
3510
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
3511
+ ./test/test_property_sets.rb:19
3512
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
3513
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3514
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
3515
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3516
+ Unable to load account_setting, underlying cause no such file to load -- account_setting.rb
3517
+
3518
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
3519
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
3520
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
3521
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
3522
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
3523
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
3524
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
3525
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
3526
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
3527
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
3528
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
3529
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
3530
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
3531
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
3532
+ ./test/test_property_sets.rb:20:in `__bind_1294701912_106634'
3533
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
3534
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
3535
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
3536
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
3537
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
3538
+ ./test/test_property_sets.rb:19
3539
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
3540
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3541
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
3542
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3543
+ Unable to load account_text, underlying cause no such file to load -- account_text.rb
3544
+
3545
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_without_new_constant_marking'
3546
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:406:in `load_file'
3547
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:547:in `new_constants_in'
3548
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:405:in `load_file'
3549
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:285:in `require_or_load'
3550
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:250:in `depend_on'
3551
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activesupport-2.3.10/lib/active_support/dependencies.rb:162:in `require_dependency'
3552
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:853:in `try_to_load_dependency'
3553
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
3554
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `each'
3555
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:865:in `require_fixture_classes'
3556
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:848:in `fixtures'
3557
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `send'
3558
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:429:in `method_missing'
3559
+ ./test/test_property_sets.rb:20:in `__bind_1294701912_106634'
3560
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `call'
3561
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:306:in `merge_block'
3562
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:301:in `initialize'
3563
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `new'
3564
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/shoulda-2.11.3/lib/shoulda/context.rb:199:in `context'
3565
+ ./test/test_property_sets.rb:19
3566
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
3567
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3568
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
3569
+ /Users/morten/.rvm/gems/ree-1.8.7-2010.02/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
3570
+ SQL (0.0ms) BEGIN
3571
+ SQL (0.2ms) SAVEPOINT active_record_1
3572
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:25:12', '2011-01-10 15:25:12')
3573
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3574
+ SQL (0.1ms) SAVEPOINT active_record_1
3575
+ Account Load (0.2ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
3576
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 2) LIMIT 1
3577
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:25:12' WHERE `id` = 2
3578
+ AccountSetting Create (0.3ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 15:25:12', '2011-01-10 15:25:12', 2, '123')
3579
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
3580
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3581
+ SQL (0.1ms) SAVEPOINT active_record_1
3582
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
3583
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'bar' AND `account_settings`.`account_id` = 2) LIMIT 1
3584
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:25:12' WHERE `id` = 2
3585
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('bar', '2011-01-10 15:25:12', '2011-01-10 15:25:12', 2, '456')
3586
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
3587
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3588
+ SQL (0.2ms) SAVEPOINT active_record_1
3589
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3590
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 2) 
3591
+ SQL (0.1ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
3592
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 2) 
3593
+ SQL (0.6ms) ROLLBACK
3594
+ SQL (0.1ms) BEGIN
3595
+ SQL (0.1ms) SAVEPOINT active_record_1
3596
+ Account Create (0.4ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:25:12', '2011-01-10 15:25:12')
3597
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3598
+ AccountSetting Load (0.4ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
3599
+ SQL (0.2ms) SAVEPOINT active_record_1
3600
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3) LIMIT 1
3601
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:25:12' WHERE `id` = 3
3602
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 15:25:12', '2011-01-10 15:25:12', 3, '1')
3603
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 3) 
3604
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3605
+ SQL (0.1ms) SELECT count(*) AS count_all FROM `account_texts` WHERE (`account_texts`.account_id = 3) 
3606
+ SQL (0.0ms) SAVEPOINT active_record_1
3607
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 3) 
3608
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 3 AND `account_settings`.id <> 730411617) LIMIT 1
3609
+ AccountSetting Update (0.2ms) UPDATE `account_settings` SET `updated_at` = '2011-01-10 15:25:12', `value` = '2' WHERE `id` = 730411617
3610
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3611
+ SQL (0.6ms) ROLLBACK
3612
+ SQL (0.0ms) BEGIN
3613
+ SQL (0.0ms) SAVEPOINT active_record_1
3614
+ Account Create (0.1ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:25:12', '2011-01-10 15:25:12')
3615
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
3616
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
3617
+ SQL (0.1ms) SAVEPOINT active_record_1
3618
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'foo' AND `account_settings`.`account_id` = 4) LIMIT 1
3619
+ Account Update (0.3ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:25:12' WHERE `id` = 4
3620
+ AccountSetting Create (0.1ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('foo', '2011-01-10 15:25:12', '2011-01-10 15:25:12', 4, '1')
3621
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
3622
+ SQL (0.0ms) RELEASE SAVEPOINT active_record_1
3623
+ SQL (0.0ms) SAVEPOINT active_record_1
3624
+ Account Load (0.1ms) SELECT * FROM `accounts` WHERE (`accounts`.`id` = 4) 
3625
+ Account Update (0.1ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:25:12' WHERE `id` = 4
3626
+ AccountSetting Destroy (0.2ms) DELETE FROM `account_settings` WHERE `id` = 730411618
3627
+ AccountSetting Load (0.2ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
3628
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3629
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 4) 
3630
+ SQL (0.4ms) ROLLBACK
3631
+ SQL (0.1ms) BEGIN
3632
+ SQL (0.1ms) SAVEPOINT active_record_1
3633
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:25:12', '2011-01-10 15:25:12')
3634
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3635
+ SQL (0.4ms) SELECT count(*) AS count_all FROM `account_settings` WHERE (`account_settings`.account_id = 5) 
3636
+ SQL (0.4ms) SELECT count(*) AS count_all FROM `account_texts` WHERE (`account_texts`.account_id = 5) 
3637
+ SQL (0.7ms) ROLLBACK
3638
+ SQL (0.0ms) BEGIN
3639
+ SQL (0.0ms) SAVEPOINT active_record_1
3640
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:25:12', '2011-01-10 15:25:12')
3641
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3642
+ AccountSetting Load (0.3ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 6) 
3643
+ SQL (0.5ms) ROLLBACK
3644
+ SQL (0.0ms) BEGIN
3645
+ SQL (0.1ms) SAVEPOINT active_record_1
3646
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:25:12', '2011-01-10 15:25:12')
3647
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3648
+ SQL (0.4ms) ROLLBACK
3649
+ SQL (0.0ms) BEGIN
3650
+ SQL (0.0ms) SAVEPOINT active_record_1
3651
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:25:12', '2011-01-10 15:25:12')
3652
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3653
+ AccountSetting Load (0.3ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
3654
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hel_lo' AND `account_settings`.`account_id` = 8) LIMIT 1
3655
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hell0' AND `account_settings`.`account_id` = 8) LIMIT 1
3656
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY '_hello' AND `account_settings`.`account_id` = 8) LIMIT 1
3657
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'hello' AND `account_settings`.`account_id` = 8) LIMIT 1
3658
+ SQL (0.5ms) ROLLBACK
3659
+ SQL (0.0ms) BEGIN
3660
+ SQL (0.1ms) SAVEPOINT active_record_1
3661
+ Account Create (0.2ms) INSERT INTO `accounts` (`name`, `created_at`, `updated_at`) VALUES('Name', '2011-01-10 15:25:12', '2011-01-10 15:25:12')
3662
+ SQL (0.2ms) RELEASE SAVEPOINT active_record_1
3663
+ SQL (0.1ms) SAVEPOINT active_record_1
3664
+ AccountSetting Load (0.1ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
3665
+ Account Update (0.2ms) UPDATE `accounts` SET `updated_at` = '2011-01-10 15:25:12' WHERE `id` = 9
3666
+ AccountSetting Create (0.2ms) INSERT INTO `account_settings` (`name`, `created_at`, `updated_at`, `account_id`, `value`) VALUES('unique', '2011-01-10 15:25:12', '2011-01-10 15:25:12', 9, NULL)
3667
+ AccountSetting Load (0.1ms) SELECT * FROM `account_settings` WHERE (`account_settings`.account_id = 9) 
3668
+ SQL (0.1ms) RELEASE SAVEPOINT active_record_1
3669
+ SQL (0.1ms) SAVEPOINT active_record_1
3670
+ AccountSetting Load (0.2ms) SELECT `account_settings`.id FROM `account_settings` WHERE (`account_settings`.`name` = BINARY 'unique' AND `account_settings`.`account_id` = 9) LIMIT 1
3671
+ SQL (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3672
+ SQL (0.5ms) ROLLBACK