Merged r10220 from trunk to 1.4-stable (#11665)

add unit test to get default document category defined on database.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.4-stable@10224 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-08-21 17:15:16 +00:00
parent 554d6bcba2
commit aedd5c5e35
1 changed files with 6 additions and 0 deletions

View File

@ -32,4 +32,10 @@ class DocumentCategoryTest < ActiveSupport::TestCase
def test_option_name
assert_equal :enumeration_doc_categories, DocumentCategory.new.option_name
end
def test_default
e = Enumeration.find_by_name('Technical documentation')
e.update_attributes(:is_default => true)
assert_equal 3, DocumentCategory.default.id
end
end