diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2007-05-31 17:31:33 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2007-05-31 17:31:33 +0000 |
commit | d0360a4d5c024c85ecdd7a4eca72256712c4f9d3 (patch) | |
tree | d1564be1291abaab1deee2fd1f29db348ae00bff /activerecord/test | |
parent | 8158455ded5811271e7d8530f262bc74a1677334 (diff) | |
download | rails-d0360a4d5c024c85ecdd7a4eca72256712c4f9d3.tar.gz rails-d0360a4d5c024c85ecdd7a4eca72256712c4f9d3.tar.bz2 rails-d0360a4d5c024c85ecdd7a4eca72256712c4f9d3.zip |
Base.inspect handles Base itself and abstract_class? Don't use #<Foo ...> since that notation's typically used for instances of a class, not the class itself. Closes #8490 [deepblue]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6913 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test')
-rwxr-xr-x | activerecord/test/base_test.rb | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/activerecord/test/base_test.rb b/activerecord/test/base_test.rb index d74a7b82b5..a64f933f37 100755 --- a/activerecord/test/base_test.rb +++ b/activerecord/test/base_test.rb @@ -1680,12 +1680,18 @@ class BasicsTest < Test::Unit::TestCase # "expected last count (#{counts.last}) to be <= first count (#{counts.first})" #end - def test_inspect + def test_inspect_class + assert_equal 'ActiveRecord::Base', ActiveRecord::Base.inspect + assert_equal 'LoosePerson(abstract)', LoosePerson.inspect + assert_match(/^Topic\(id: integer, title: string/, Topic.inspect) + end + + def test_inspect_instance topic = topics(:first) - assert_equal topic.inspect, %(#<Topic id: 1, title: "The First Topic", author_name: "David", author_email_address: "david@loudthinking.com", written_on: "#{topic.written_on.to_s(:db)}", bonus_time: "#{topic.bonus_time.to_s(:db)}", last_read: "#{topic.last_read.to_s(:db)}", content: "Have a nice day", approved: false, replies_count: 1, parent_id: nil, type: nil>) + assert_equal %(#<Topic id: 1, title: "The First Topic", author_name: "David", author_email_address: "david@loudthinking.com", written_on: "#{topic.written_on.to_s(:db)}", bonus_time: "#{topic.bonus_time.to_s(:db)}", last_read: "#{topic.last_read.to_s(:db)}", content: "Have a nice day", approved: false, replies_count: 1, parent_id: nil, type: nil>), topic.inspect end - def test_inspect_new + def test_inspect_new_instance assert_match /Topic id: nil/, Topic.new.inspect end |