Commit eabf1ff3 authored by Eric Davis's avatar Eric Davis

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
parent 4acd990e
......@@ -8,6 +8,8 @@ class CalendarsController < ApplicationController
helper :projects
helper :queries
include QueriesHelper
helper :sort
include SortHelper
def show
if params[:year] and params[:year].to_i > 1900
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment