summaryrefslogtreecommitdiffstats
path: root/test/helpers/issues_helper_test.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-09-26 15:02:41 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-09-26 15:02:41 +0000
commit589609ff3aaf9d7973b768150da5c9d028345a9b (patch)
tree218c70ab2f002f71dca16345e6cebdf2086d8c04 /test/helpers/issues_helper_test.rb
parenta82bf2c42ac01103a15e370261397c3d9e5d85c1 (diff)
downloadredmine-589609ff3aaf9d7973b768150da5c9d028345a9b.tar.gz
redmine-589609ff3aaf9d7973b768150da5c9d028345a9b.zip
fix source indent of IssuesHelperTest
git-svn-id: http://svn.redmine.org/redmine/trunk@20088 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/helpers/issues_helper_test.rb')
-rw-r--r--test/helpers/issues_helper_test.rb26
1 files changed, 14 insertions, 12 deletions
diff --git a/test/helpers/issues_helper_test.rb b/test/helpers/issues_helper_test.rb
index f5692911f..4fe603454 100644
--- a/test/helpers/issues_helper_test.rb
+++ b/test/helpers/issues_helper_test.rb
@@ -117,12 +117,13 @@ class IssuesHelperTest < Redmine::HelperTest
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)
@@ -130,12 +131,13 @@ class IssuesHelperTest < Redmine::HelperTest
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)