Rails 4 is just around the corner. Stuck with 1.8 until then.

This commit is contained in:
Jeremy Kemper 2011-10-13 16:11:00 -07:00
parent 0a9b6de4d2
commit 8cbe826958
1 changed files with 3 additions and 3 deletions

View File

@ -4,9 +4,9 @@ require 'models/admin/user'
class StoreTest < ActiveRecord::TestCase
setup do
@john = Admin::User.create(name: 'John Doe', color: 'black')
@john = Admin::User.create(:name => 'John Doe', :color => 'black')
end
test "reading store attributes through accessors" do
assert_equal 'black', @john.color
assert_nil @john.homepage
@ -19,7 +19,7 @@ class StoreTest < ActiveRecord::TestCase
assert_equal 'red', @john.color
assert_equal '37signals.com', @john.homepage
end
test "accessing attributes not exposed by accessors" do
@john.settings[:icecream] = 'graeters'
@john.save