removed unused variables

This commit is contained in:
Arun Agrawal 2012-03-18 23:07:16 +05:30
parent ded74dfd8b
commit 4cd0b4e7c3

@ -328,8 +328,8 @@ def test_validate_straight_inheritance_uniqueness
def test_validate_uniqueness_with_conditions
Topic.validates_uniqueness_of(:title, :conditions => Topic.where('approved = ?', true))
t1 = Topic.create("title" => "I'm a topic", "approved" => true)
t2 = Topic.create("title" => "I'm an unapproved topic", "approved" => false)
Topic.create("title" => "I'm a topic", "approved" => true)
Topic.create("title" => "I'm an unapproved topic", "approved" => false)
t3 = Topic.new("title" => "I'm a topic", "approved" => true)
assert !t3.valid?, "t3 shouldn't be valid"