diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-11-03 08:13:08 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-11-03 08:13:08 +0000 |
commit | 9357ba1d4b93c0a812d67cf97c1806de243a3781 (patch) | |
tree | b626f4e76fe8db58729f83f96ffd5e9f6c150722 /test/functional/custom_fields_controller_test.rb | |
parent | fb6955b21cc893f311e4b40b5edcf7ed843e56c8 (diff) | |
download | redmine-9357ba1d4b93c0a812d67cf97c1806de243a3781.tar.gz redmine-9357ba1d4b93c0a812d67cf97c1806de243a3781.zip |
add missing fixtures to test/functional/custom_fields_controller_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@13550 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/custom_fields_controller_test.rb')
-rw-r--r-- | test/functional/custom_fields_controller_test.rb | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/test/functional/custom_fields_controller_test.rb b/test/functional/custom_fields_controller_test.rb index 0d86df204..caae908b3 100644 --- a/test/functional/custom_fields_controller_test.rb +++ b/test/functional/custom_fields_controller_test.rb @@ -18,7 +18,18 @@ require File.expand_path('../../test_helper', __FILE__) class CustomFieldsControllerTest < ActionController::TestCase - fixtures :custom_fields, :custom_values, :trackers, :users, :projects + fixtures :custom_fields, :custom_values, + :custom_fields_projects, :custom_fields_trackers, + :roles, :users, + :members, :member_roles, + :groups_users, + :trackers, :projects_trackers, + :enabled_modules, + :projects, :issues, + :issue_statuses, + :issue_categories, + :enumerations, + :workflows def setup @request.session[:user_id] = 1 |