summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/object_helpers.rb8
-rw-r--r--test/unit/lib/redmine/helpers/gantt_test.rb2
2 files changed, 1 insertions, 9 deletions
diff --git a/test/object_helpers.rb b/test/object_helpers.rb
index eb2c87e67..7be05606f 100644
--- a/test/object_helpers.rb
+++ b/test/object_helpers.rb
@@ -87,14 +87,6 @@ module ObjectHelpers
source
end
- # Generate the default Query
- def Query.generate_default!(attributes={})
- query = Query.new(attributes)
- query.name = '_' if query.name.blank?
- query.save!
- query
- end
-
# Generate an issue for a project, using it's trackers
def Issue.generate_for_project!(project, attributes={})
issue = Issue.new(attributes) do |issue|
diff --git a/test/unit/lib/redmine/helpers/gantt_test.rb b/test/unit/lib/redmine/helpers/gantt_test.rb
index b4f201a2b..ace931ba1 100644
--- a/test/unit/lib/redmine/helpers/gantt_test.rb
+++ b/test/unit/lib/redmine/helpers/gantt_test.rb
@@ -33,7 +33,7 @@ class Redmine::Helpers::GanttHelperTest < ActionView::TestCase
@project = project
@gantt = Redmine::Helpers::Gantt.new(options)
@gantt.project = @project
- @gantt.query = Query.generate_default!(:project => @project)
+ @gantt.query = Query.create!(:project => @project, :name => 'Gantt')
@gantt.view = self
@gantt.instance_variable_set('@date_from', options[:date_from] || 2.weeks.ago.to_date)
@gantt.instance_variable_set('@date_to', options[:date_to] || 2.weeks.from_now.to_date)