Add a description for trackers (#442).

Patch by Marius BALTEANU.

git-svn-id: http://svn.redmine.org/redmine/trunk@17970 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2019-03-15 10:38:56 +00:00
parent 3b59c6dfb2
commit 84f322b2af
19 changed files with 110 additions and 6 deletions

View File

@@ -134,4 +134,10 @@ class TrackerTest < ActiveSupport::TestCase
end
end
end
def test_tracker_should_have_description
tracker = Tracker.find(1)
assert tracker.respond_to?(:description)
assert_equal tracker.description, "Description for Bug tracker"
end
end