diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-09-01 05:33:43 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-09-01 05:33:43 +0000 |
commit | e4b7b7cc38e3a25c5e4704ba6c51e83b98b908e5 (patch) | |
tree | da5755b80591eb136e6604732cf1452175066130 /test/unit/helpers/issues_helper_test.rb | |
parent | 8eb39d682d1c4c9c6d9efbe5b0811d1a2cbfec01 (diff) | |
download | redmine-e4b7b7cc38e3a25c5e4704ba6c51e83b98b908e5.tar.gz redmine-e4b7b7cc38e3a25c5e4704ba6c51e83b98b908e5.zip |
code cleanup test_with_a_start_date_attribute_* of unit IssuesHelperTest
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10264 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 | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/test/unit/helpers/issues_helper_test.rb b/test/unit/helpers/issues_helper_test.rb index a3f1d79de..3c465a846 100644 --- a/test/unit/helpers/issues_helper_test.rb +++ b/test/unit/helpers/issues_helper_test.rb @@ -109,26 +109,26 @@ class IssuesHelperTest < ActionView::TestCase end end - def test_with_a_start_date_attribute_format_the_current_date + def test_with_a_start_date_attribute_should_format_the_current_date @detail = JournalDetail.new( - :property => 'attr', + :property => 'attr', :old_value => '2010-01-01', - :value => '2010-01-31', - :prop_key => 'start_date' + :value => '2010-01-31', + :prop_key => 'start_date' ) - with_settings :date_format => '%m/%d/%Y'do + 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 + def test_with_a_start_date_attribute_should_format_the_old_date @detail = JournalDetail.new( - :property => 'attr', + :property => 'attr', :old_value => '2010-01-01', - :value => '2010-01-31', - :prop_key => 'start_date' + :value => '2010-01-31', + :prop_key => 'start_date' ) - with_settings :date_format => '%m/%d/%Y'do + with_settings :date_format => '%m/%d/%Y' do assert_match "01/01/2010", show_detail(@detail, true) end end |