summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2012-10-22 03:28:44 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2012-10-22 03:28:44 +0000
commite889fe9c8adf57eb19fa5431ad3ed15b4d1451d2 (patch)
tree42865c5add40ee222ead1f183cad74bcd6ea1452
parent16b1fcb07953f4591037534ab6cb46c806559465 (diff)
downloadredmine-e889fe9c8adf57eb19fa5431ad3ed15b4d1451d2.tar.gz
redmine-e889fe9c8adf57eb19fa5431ad3ed15b4d1451d2.zip
Merged r10688 from trunk to 1.4-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/1.4-stable@10692 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 59b237be8..80b9325a1 100644
--- a/test/unit/helpers/issues_helper_test.rb
+++ b/test/unit/helpers/issues_helper_test.rb
@@ -105,27 +105,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