end
test 'show_detail with a start_date attribute should format the dates' do
- detail = JournalDetail.new(
- :property => 'attr',
- :old_value => '2010-01-01',
- :value => '2010-01-31',
- :prop_key => 'start_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)
assert_match "01/01/2010", show_detail(detail, true)
end
test 'show_detail with a due_date attribute should format the dates' do
- detail = JournalDetail.new(
- :property => 'attr',
- :old_value => '2010-01-01',
- :value => '2010-01-31',
- :prop_key => 'due_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/31/2010", show_detail(detail, true)
assert_match "01/01/2010", show_detail(detail, true)