From eabf1ff3e703609f4ec80d98a2f56a91674fdcbc Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Sun, 10 Oct 2010 21:17:10 +0000 Subject: Add SortHelper so custom queries will run on the Calendar. #6612 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4245 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/functional/calendars_controller_test.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'test') diff --git a/test/functional/calendars_controller_test.rb b/test/functional/calendars_controller_test.rb index ad047c669..3fb9ad1f0 100644 --- a/test/functional/calendars_controller_test.rb +++ b/test/functional/calendars_controller_test.rb @@ -16,6 +16,16 @@ class CalendarsControllerTest < ActionController::TestCase assert_template 'calendar' assert_not_nil assigns(:calendar) end + + context "GET :show" do + should "run custom queries" do + @query = Query.generate_default! + + get :show, :query_id => @query.id + assert_response :success + end + + end def test_week_number_calculation Setting.start_of_week = 7 -- cgit v1.2.3