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