diff test/integration/api_test/token_authentication_test.rb @ 909:cbb26bc654de redmine-1.3

Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author Chris Cannam
date Fri, 24 Feb 2012 19:09:32 +0000
parents 8661b858af72
children 622f24f53b42 261b3d9a4903
line wrap: on
line diff
--- a/test/integration/api_test/token_authentication_test.rb	Fri Feb 24 18:36:29 2012 +0000
+++ b/test/integration/api_test/token_authentication_test.rb	Fri Feb 24 19:09:32 2012 +0000
@@ -1,7 +1,14 @@
 require File.expand_path('../../../test_helper', __FILE__)
 
 class ApiTest::TokenAuthenticationTest < ActionController::IntegrationTest
-  fixtures :all
+  fixtures :projects, :trackers, :issue_statuses, :issues,
+           :enumerations, :users, :issue_categories,
+           :projects_trackers,
+           :roles,
+           :member_roles,
+           :members,
+           :enabled_modules,
+           :workflows
 
   def setup
     Setting.rest_api_enabled = '1'
@@ -12,7 +19,7 @@
     Setting.rest_api_enabled = '0'
     Setting.login_required = '0'
   end
-  
+
   # Using the NewsController because it's a simple API.
   context "get /news" do
     context "in :xml format" do