diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-09-01 04:10:33 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-09-01 04:10:33 +0000 |
commit | 4bca584024f5c5c2e9b2fafae19e579fea3d775d (patch) | |
tree | 8689567b1a78dba0aebe15068a019724856f33b9 /test/unit/helpers/issues_helper_test.rb | |
parent | 935d8e594b3ec7fe86653f638051776f368eebd4 (diff) | |
download | redmine-4bca584024f5c5c2e9b2fafae19e579fea3d775d.tar.gz redmine-4bca584024f5c5c2e9b2fafae19e579fea3d775d.zip |
use date_format setting at unit IssuesHelperTest test_with_a_start_date_attribute_*
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10257 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/helpers/issues_helper_test.rb')
-rw-r--r-- | test/unit/helpers/issues_helper_test.rb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/unit/helpers/issues_helper_test.rb b/test/unit/helpers/issues_helper_test.rb index c09fa548d..2057b728d 100644 --- a/test/unit/helpers/issues_helper_test.rb +++ b/test/unit/helpers/issues_helper_test.rb @@ -116,7 +116,9 @@ class IssuesHelperTest < ActionView::TestCase :value => '2010-01-31', :prop_key => 'start_date' ) - assert_match "01/31/2010", show_detail(@detail, true) + with_settings :date_format => '%m/%d/%Y'do + assert_match "01/31/2010", show_detail(@detail, true) + end end def test_with_a_start_date_attribute_format_the_old_date @@ -126,7 +128,9 @@ class IssuesHelperTest < ActionView::TestCase :value => '2010-01-31', :prop_key => 'start_date' ) - assert_match "01/01/2010", show_detail(@detail, true) + with_settings :date_format => '%m/%d/%Y'do + assert_match "01/01/2010", show_detail(@detail, true) + end end context "with a due_date attribute" do |