]> source.dussan.org Git - redmine.git/commitdiff
replace shoulder "with a start_date attribute" context of test/unit/helpers/issues_he...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 1 Sep 2012 02:23:59 +0000 (02:23 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 1 Sep 2012 02:23:59 +0000 (02:23 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10253 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/helpers/issues_helper_test.rb

index 91c6f5a4e1123cadbfdbb572dd447f92217ab979..c09fa548d4fcfc5e632e0d1110d1a237e94ee782 100644 (file)
@@ -109,16 +109,24 @@ class IssuesHelperTest < ActionView::TestCase
       end
     end
 
-    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')
-        assert_match "01/31/2010", show_detail(@detail, true)
-      end
+    def test_with_a_start_date_attribute_format_the_current_date
+      @detail = JournalDetail.new(
+                   :property => 'attr',
+                   :old_value => '2010-01-01',
+                   :value => '2010-01-31',
+                   :prop_key => 'start_date'
+                )
+      assert_match "01/31/2010", show_detail(@detail, true)
+    end
 
-      should "format the old date" do
-        @detail = JournalDetail.new(:property => 'attr', :old_value => '2010-01-01', :value => '2010-01-31', :prop_key => 'start_date')
-        assert_match "01/01/2010", show_detail(@detail, true)
-      end
+    def test_with_a_start_date_attribute_format_the_old_date
+      @detail = JournalDetail.new(
+                   :property => 'attr',
+                   :old_value => '2010-01-01',
+                   :value => '2010-01-31',
+                   :prop_key => 'start_date'
+                )
+      assert_match "01/01/2010", show_detail(@detail, true)
     end
 
     context "with a due_date attribute" do