summaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2012-09-01 05:33:28 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2012-09-01 05:33:28 +0000
commit8eb39d682d1c4c9c6d9efbe5b0811d1a2cbfec01 (patch)
treeda16ce06567469c1cb316a83d835992d372d7197 /test/unit
parent4bca584024f5c5c2e9b2fafae19e579fea3d775d (diff)
downloadredmine-8eb39d682d1c4c9c6d9efbe5b0811d1a2cbfec01.tar.gz
redmine-8eb39d682d1c4c9c6d9efbe5b0811d1a2cbfec01.zip
replace shoulder "with a due_date attribute" context of unit IssuesHelperTest and use with_settings
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10263 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/helpers/issues_helper_test.rb22
1 files changed, 17 insertions, 5 deletions
diff --git a/test/unit/helpers/issues_helper_test.rb b/test/unit/helpers/issues_helper_test.rb
index 2057b728d..a3f1d79de 100644
--- a/test/unit/helpers/issues_helper_test.rb
+++ b/test/unit/helpers/issues_helper_test.rb
@@ -133,14 +133,26 @@ class IssuesHelperTest < ActionView::TestCase
end
end
- context "with a due_date attribute" do
- should "format the current date" do
- @detail = JournalDetail.new(:property => 'attr', :old_value => '2010-01-01', :value => '2010-01-31', :prop_key => 'due_date')
+ def test_with_a_due_date_attribute_should_with_a_due_date_attribute
+ @detail = JournalDetail.new(
+ :property => 'attr',
+ :old_value => '2010-01-01',
+ :value => '2010-01-31',
+ :prop_key => 'due_date'
+ )
+ with_settings :date_format => '%m/%d/%Y' do
assert_match "01/31/2010", show_detail(@detail, true)
end
+ end
- should "format the old date" do
- @detail = JournalDetail.new(:property => 'attr', :old_value => '2010-01-01', :value => '2010-01-31', :prop_key => 'due_date')
+ def test_with_a_due_date_attribute_should_format_the_old_date
+ @detail = JournalDetail.new(
+ :property => 'attr',
+ :old_value => '2010-01-01',
+ :value => '2010-01-31',
+ :prop_key => 'due_date'
+ )
+ with_settings :date_format => '%m/%d/%Y' do
assert_match "01/01/2010", show_detail(@detail, true)
end
end