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
This commit is contained in:
parent
4acd990ee2
commit
eabf1ff3e7
|
@ -8,6 +8,8 @@ class CalendarsController < ApplicationController
|
||||||
helper :projects
|
helper :projects
|
||||||
helper :queries
|
helper :queries
|
||||||
include QueriesHelper
|
include QueriesHelper
|
||||||
|
helper :sort
|
||||||
|
include SortHelper
|
||||||
|
|
||||||
def show
|
def show
|
||||||
if params[:year] and params[:year].to_i > 1900
|
if params[:year] and params[:year].to_i > 1900
|
||||||
|
|
|
@ -16,6 +16,16 @@ class CalendarsControllerTest < ActionController::TestCase
|
||||||
assert_template 'calendar'
|
assert_template 'calendar'
|
||||||
assert_not_nil assigns(:calendar)
|
assert_not_nil assigns(:calendar)
|
||||||
end
|
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
|
def test_week_number_calculation
|
||||||
Setting.start_of_week = 7
|
Setting.start_of_week = 7
|
||||||
|
|
Loading…
Reference in New Issue