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
This commit is contained in:
parent
935d8e594b
commit
4bca584024
|
@ -116,8 +116,10 @@ class IssuesHelperTest < ActionView::TestCase
|
||||||
:value => '2010-01-31',
|
:value => '2010-01-31',
|
||||||
:prop_key => 'start_date'
|
:prop_key => 'start_date'
|
||||||
)
|
)
|
||||||
|
with_settings :date_format => '%m/%d/%Y'do
|
||||||
assert_match "01/31/2010", show_detail(@detail, true)
|
assert_match "01/31/2010", show_detail(@detail, true)
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def test_with_a_start_date_attribute_format_the_old_date
|
def test_with_a_start_date_attribute_format_the_old_date
|
||||||
@detail = JournalDetail.new(
|
@detail = JournalDetail.new(
|
||||||
|
@ -126,8 +128,10 @@ class IssuesHelperTest < ActionView::TestCase
|
||||||
:value => '2010-01-31',
|
:value => '2010-01-31',
|
||||||
:prop_key => 'start_date'
|
:prop_key => 'start_date'
|
||||||
)
|
)
|
||||||
|
with_settings :date_format => '%m/%d/%Y'do
|
||||||
assert_match "01/01/2010", show_detail(@detail, true)
|
assert_match "01/01/2010", show_detail(@detail, true)
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
context "with a due_date attribute" do
|
context "with a due_date attribute" do
|
||||||
should "format the current date" do
|
should "format the current date" do
|
||||||
|
|
Loading…
Reference in New Issue