Compare commits

..

1 Commits

Author SHA1 Message Date
Jean-Philippe Lang
5c36f77657 tagged version 2.0.4
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/tags/2.0.4@10394 e93f8b46-1217-0410-a6f0-8f06a7374b81
2012-09-16 12:46:52 +00:00

View File

@@ -108,55 +108,51 @@ class IssuesHelperTest < ActionView::TestCase
end
end
context "with a start_date attribute" do
should "format the current date" do
@detail = JournalDetail.new(
def test_with_a_start_date_attribute_should_format_the_current_date
@detail = JournalDetail.new(
:property => 'attr',
:old_value => '2010-01-01',
:value => '2010-01-31',
:prop_key => 'start_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 => 'start_date'
)
with_settings :date_format => '%m/%d/%Y' do
assert_match "01/01/2010", show_detail(@detail, true)
end
with_settings :date_format => '%m/%d/%Y' do
assert_match "01/31/2010", show_detail(@detail, true)
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_start_date_attribute_should_format_the_old_date
@detail = JournalDetail.new(
:property => 'attr',
:old_value => '2010-01-01',
:value => '2010-01-31',
:prop_key => 'start_date'
)
with_settings :date_format => '%m/%d/%Y' do
assert_match "01/31/2010", show_detail(@detail, true)
end
with_settings :date_format => '%m/%d/%Y' do
assert_match "01/01/2010", show_detail(@detail, true)
end
end
should "format the old date" do
@detail = JournalDetail.new(
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/01/2010", show_detail(@detail, true)
end
with_settings :date_format => '%m/%d/%Y' do
assert_match "01/31/2010", show_detail(@detail, true)
end
end
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