diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-10-22 03:23:28 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-10-22 03:23:28 +0000 |
commit | b7e999d1aa849b1f5f285ecbaf609325737e11f0 (patch) | |
tree | da9d79851f0db504a68b51227de2d8fa6ac95798 | |
parent | 284d03e1f808e1e665865981522303828b8a1c03 (diff) | |
download | redmine-b7e999d1aa849b1f5f285ecbaf609325737e11f0.tar.gz redmine-b7e999d1aa849b1f5f285ecbaf609325737e11f0.zip |
Merged r10688 from trunk to 2.1-stable
Backout r10253.
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.1-stable@10690 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/unit/helpers/issues_helper_test.rb | 20 |
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 3c465a846..8ad655429 100644 --- a/test/unit/helpers/issues_helper_test.rb +++ b/test/unit/helpers/issues_helper_test.rb @@ -109,27 +109,29 @@ class IssuesHelperTest < ActionView::TestCase end end - def test_with_a_start_date_attribute_should_format_the_current_date - @detail = JournalDetail.new( + context "with a start_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 => 'start_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_start_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 => 'start_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 |