diff options
author | Alexey Mahotkin <squadette@gmail.com> | 2010-09-16 17:10:36 +0400 |
---|---|---|
committer | Alexey Mahotkin <squadette@gmail.com> | 2010-09-16 17:10:36 +0400 |
commit | dfebdb1b033c033b7a39615a39d9d4ac3052e61d (patch) | |
tree | b4b3fa7c7927f0132789cb875ff001710f085499 /activeresource/test/cases | |
parent | 6f3ac42550ed6780427e723de61f351537d582bf (diff) | |
download | rails-dfebdb1b033c033b7a39615a39d9d4ac3052e61d.tar.gz rails-dfebdb1b033c033b7a39615a39d9d4ac3052e61d.tar.bz2 rails-dfebdb1b033c033b7a39615a39d9d4ac3052e61d.zip |
Tiny fixes to rdoc
Diffstat (limited to 'activeresource/test/cases')
-rw-r--r-- | activeresource/test/cases/base/schema_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activeresource/test/cases/base/schema_test.rb b/activeresource/test/cases/base/schema_test.rb index 136c827926..19861d7b32 100644 --- a/activeresource/test/cases/base/schema_test.rb +++ b/activeresource/test/cases/base/schema_test.rb @@ -399,7 +399,7 @@ class SchemaTest < ActiveModel::TestCase assert_not_equal matz.known_attributes, rick.known_attributes, "should have had different known attributes too" end - test "setting schema then fetching should add schema attributes to the intance attributes" do + test "setting schema then fetching should add schema attributes to the instance attributes" do # an attribute in common with fetched instance and one that isn't new_schema = {'name' => 'string', 'my_strange_attribute' => 'string'} |