Patch by Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@19868
e93f8b46-1217-0410-a6f0-
8f06a7374b81
s << ' child' if child?
s << ' parent' unless leaf?
s << ' private' if is_private?
+ s << ' behind-schedule' if behind_schedule?
if user.logged?
s << ' created-by-me' if author_id == user.id
s << ' assigned-to-me' if assigned_to_id == user.id
assert_include 'assigned-to-me', issue2.css_classes(user)
end
+ def test_css_classes_behind_schedule
+ assert_include 'behind-schedule', Issue.find(1).css_classes.split(' ')
+ assert_not_include 'behind-schedule', Issue.find(2).css_classes.split(' ')
+ end
+
def test_save_attachments_with_hash_should_save_attachments_in_keys_order
set_tmp_attachments_directory
issue = Issue.generate!