]> source.dussan.org Git - redmine.git/commitdiff
Removed some shoulda context.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 18 Feb 2013 17:30:11 +0000 (17:30 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 18 Feb 2013 17:30:11 +0000 (17:30 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11439 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/calendars_controller_test.rb

index d4b8169f9b34810ff0a594727e19cd48e7d98ce8..dc302f45600cb1791057a1ba780e84b23f67f7b3 100644 (file)
@@ -26,13 +26,20 @@ class CalendarsControllerTest < ActionController::TestCase
            :members,
            :enabled_modules
 
-  def test_calendar
+  def test_show
     get :show, :project_id => 1
     assert_response :success
     assert_template 'calendar'
     assert_not_nil assigns(:calendar)
   end
 
+  def test_show_should_run_custom_queries
+    @query = IssueQuery.create!(:name => 'Calendar', :is_public => true)
+
+    get :show, :query_id => @query.id
+    assert_response :success
+  end
+
   def test_cross_project_calendar
     get :show
     assert_response :success
@@ -40,16 +47,6 @@ class CalendarsControllerTest < ActionController::TestCase
     assert_not_nil assigns(:calendar)
   end
 
-  context "GET :show" do
-    should "run custom queries" do
-      @query = IssueQuery.create!(:name => 'Calendar', :is_public => true)
-
-      get :show, :query_id => @query.id
-      assert_response :success
-    end
-
-  end
-
   def test_week_number_calculation
     Setting.start_of_week = 7