2011-10-29 16:19:11 +04:00
|
|
|
#-- encoding: UTF-8
|
2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# Copyright (C) 2010-2011 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2009-05-31 03:30:36 +04:00
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
2010-12-13 02:24:34 +03:00
|
|
|
require File.expand_path('../../test_helper', __FILE__)
|
2009-05-31 03:30:36 +04:00
|
|
|
|
2009-09-13 21:14:35 +04:00
|
|
|
class DocumentCategoryTest < ActiveSupport::TestCase
|
2009-10-22 02:34:17 +04:00
|
|
|
fixtures :enumerations, :documents, :issues
|
2009-05-31 03:30:36 +04:00
|
|
|
|
|
|
|
def test_should_be_an_enumeration
|
|
|
|
assert DocumentCategory.ancestors.include?(Enumeration)
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2009-05-31 03:30:36 +04:00
|
|
|
def test_objects_count
|
2009-11-27 23:49:08 +03:00
|
|
|
assert_equal 2, DocumentCategory.find_by_name("Uncategorized").objects_count
|
2009-05-31 03:30:36 +04:00
|
|
|
assert_equal 0, DocumentCategory.find_by_name("User documentation").objects_count
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_option_name
|
|
|
|
assert_equal :enumeration_doc_categories, DocumentCategory.new.option_name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|