add check default document category is not defined on database in tests (#11665)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10230 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
d1a52fd301
commit
44c15c7560
|
@ -34,12 +34,14 @@ class DocumentCategoryTest < ActiveSupport::TestCase
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_default
|
def test_default
|
||||||
|
assert_nil DocumentCategory.find(:first, :conditions => { :is_default => true })
|
||||||
e = Enumeration.find_by_name('Technical documentation')
|
e = Enumeration.find_by_name('Technical documentation')
|
||||||
e.update_attributes(:is_default => true)
|
e.update_attributes(:is_default => true)
|
||||||
assert_equal 3, DocumentCategory.default.id
|
assert_equal 3, DocumentCategory.default.id
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_force_default
|
def test_force_default
|
||||||
|
assert_nil DocumentCategory.find(:first, :conditions => { :is_default => true })
|
||||||
assert_equal 1, DocumentCategory.default.id
|
assert_equal 1, DocumentCategory.default.id
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue