From b9d4e4dd6703b622b37506c8bcdfe2958fb1c51c 2011-09-24 07:08:20 From: Toshi MARUYAMA Date: 2011-09-24 07:08:20 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 --- diff --git a/test/functional/calendars_controller_test.rb b/test/functional/calendars_controller_test.rb index 84b886d..f89ccdd 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