diff options
author | Go MAEDA <maeda@farend.jp> | 2024-12-11 10:17:57 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-12-11 10:17:57 +0000 |
commit | 4fb1e4bea0edb5fe520aa8257f5d867232c8f729 (patch) | |
tree | a613cae1a23801f8596e14f2c5d6557cb6060c46 /test/unit/project_test.rb | |
parent | 7ae0427c9ee891820954dfbd72c129d65989b3e8 (diff) | |
download | redmine-4fb1e4bea0edb5fe520aa8257f5d867232c8f729.tar.gz redmine-4fb1e4bea0edb5fe520aa8257f5d867232c8f729.zip |
Use `fixtures :all` to ensure consistent test data and improve test reliability (#41961).
Patch by Katsuya HIDAKA (user:hidakatsuya).
git-svn-id: https://svn.redmine.org/redmine/trunk@23391 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/project_test.rb')
-rw-r--r-- | test/unit/project_test.rb | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/test/unit/project_test.rb b/test/unit/project_test.rb index dc7d00fe8..f8b7e64ed 100644 --- a/test/unit/project_test.rb +++ b/test/unit/project_test.rb @@ -20,28 +20,6 @@ require_relative '../test_helper' class ProjectTest < ActiveSupport::TestCase - fixtures :projects, :trackers, :issue_statuses, :issues, - :journals, :journal_details, - :enumerations, :users, :issue_categories, - :projects_trackers, - :custom_fields, - :custom_fields_projects, - :custom_fields_trackers, - :custom_values, - :roles, - :member_roles, - :members, - :enabled_modules, - :versions, - :wikis, :wiki_pages, :wiki_contents, :wiki_content_versions, - :groups_users, - :boards, :messages, - :repositories, - :news, :comments, - :documents, - :workflows, - :attachments - def setup @ecookbook = Project.find(1) @ecookbook_sub1 = Project.find(3) |