Merge pull request #10110 from choudhuryanupam/master

Removed space and unused class
This commit is contained in:
Carlos Antonio da Silva 2013-04-05 14:18:24 -07:00
commit 2ac97df552
2 changed files with 1 additions and 2 deletions

View File

@ -245,7 +245,6 @@ class AssociationProxyTest < ActiveRecord::TestCase
end
class OverridingAssociationsTest < ActiveRecord::TestCase
class Person < ActiveRecord::Base; end
class DifferentPerson < ActiveRecord::Base; end
class PeopleList < ActiveRecord::Base

View File

@ -69,7 +69,7 @@ class AttributeMethodsTest < ActiveRecord::TestCase
end
def test_boolean_attributes
assert ! Topic.find(1).approved?
assert !Topic.find(1).approved?
assert Topic.find(2).approved?
end