From b9d4e4dd6703b622b37506c8bcdfe2958fb1c51c Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Sat, 24 Sep 2011 07:08:20 +0000 Subject: [PATCH] Rails3: replace "all" fixtures at test/functional/calendars_controller_test.rb Following error raises. Fixture::FormatError: Bad data for Configuration::Empty fixture named default (nil) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7490 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/functional/calendars_controller_test.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/test/functional/calendars_controller_test.rb b/test/functional/calendars_controller_test.rb index 84b886d08..f89ccdd2a 100644 --- a/test/functional/calendars_controller_test.rb +++ b/test/functional/calendars_controller_test.rb @@ -1,7 +1,14 @@ require File.expand_path('../../test_helper', __FILE__) class CalendarsControllerTest < ActionController::TestCase - fixtures :all + fixtures :projects, + :trackers, + :projects_trackers, + :roles, + :member_roles, + :members, + :auth_sources, + :enabled_modules def test_calendar get :show, :project_id => 1 -- 2.39.5