summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2012-10-22 03:34:29 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2012-10-22 03:34:29 +0000
commit5cefd924a25f7370b9d820b9f2d690eac7c3c4e3 (patch)
treedee2c9496ae17de533e1c885ab42ae9cf9d67dc1
parent1d888f25f6f09e7db8365311a52fcd7e7051e4ec (diff)
downloadredmine-2.0-stable.tar.gz
redmine-2.0-stable.zip
Merged r10689 from trunk to 2.0-stable2.0-stable
Partial backout r10263. Backout replacing shoulda context of test/unit/helpers/issues_helper_test.rb. Test methods in shoulda context do not run on Ruby 1.8.7-p370. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/2.0-stable@10695 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--test/unit/helpers/issues_helper_test.rb20
1 files changed, 11 insertions, 9 deletions
diff --git a/test/unit/helpers/issues_helper_test.rb b/test/unit/helpers/issues_helper_test.rb
index 8958ef158..c19015e50 100644
--- a/test/unit/helpers/issues_helper_test.rb
+++ b/test/unit/helpers/issues_helper_test.rb
@@ -134,27 +134,29 @@ class IssuesHelperTest < ActionView::TestCase
end
end
- def test_with_a_due_date_attribute_should_with_a_due_date_attribute
- @detail = JournalDetail.new(
+ 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'
)
- with_settings :date_format => '%m/%d/%Y' do
- assert_match "01/31/2010", show_detail(@detail, true)
+ with_settings :date_format => '%m/%d/%Y' do
+ assert_match "01/31/2010", show_detail(@detail, true)
+ end
end
- end
- def test_with_a_due_date_attribute_should_format_the_old_date
- @detail = JournalDetail.new(
+ should "format the old date" do
+ @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)
+ with_settings :date_format => '%m/%d/%Y' do
+ assert_match "01/01/2010", show_detail(@detail, true)
+ end
end
end