diff options
author | Anupam Choudhury <contact2anupam@gmail.com> | 2013-03-07 20:42:38 +0530 |
---|---|---|
committer | Anupam Choudhury <contact2anupam@gmail.com> | 2013-03-07 20:42:38 +0530 |
commit | f15d9bd11612442be4fe18c013bcad77b3d97f6b (patch) | |
tree | 2bfa615ff4859f4166ecacd8e1c0f32acaf87025 /activerecord/test/cases | |
parent | 173e0e086f7ea88e052ec04e6cc22ee3b6193dca (diff) | |
download | rails-f15d9bd11612442be4fe18c013bcad77b3d97f6b.tar.gz rails-f15d9bd11612442be4fe18c013bcad77b3d97f6b.tar.bz2 rails-f15d9bd11612442be4fe18c013bcad77b3d97f6b.zip |
Refactored and removed unnecessary lines in the test case
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r-- | activerecord/test/cases/associations/belongs_to_associations_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/test/cases/associations/belongs_to_associations_test.rb b/activerecord/test/cases/associations/belongs_to_associations_test.rb index 3a6da0e59f..8664ee99d2 100644 --- a/activerecord/test/cases/associations/belongs_to_associations_test.rb +++ b/activerecord/test/cases/associations/belongs_to_associations_test.rb @@ -21,9 +21,9 @@ class BelongsToAssociationsTest < ActiveRecord::TestCase :posts, :tags, :taggings, :comments, :sponsors, :members def test_belongs_to - Client.find(3).firm.name - assert_equal companies(:first_firm).name, Client.find(3).firm.name - assert_not_nil Client.find(3).firm, "Microsoft should have a firm" + firm = Client.find(3).firm + assert_not_nil firm + assert_equal companies(:first_firm).name, firm.name end def test_belongs_to_with_primary_key |