Removed Query.generate_default! helper.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9472 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
2e3bf71e9a
commit
0fad78f53f
|
@ -87,14 +87,6 @@ module ObjectHelpers
|
||||||
source
|
source
|
||||||
end
|
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
|
# Generate an issue for a project, using it's trackers
|
||||||
def Issue.generate_for_project!(project, attributes={})
|
def Issue.generate_for_project!(project, attributes={})
|
||||||
issue = Issue.new(attributes) do |issue|
|
issue = Issue.new(attributes) do |issue|
|
||||||
|
|
|
@ -33,7 +33,7 @@ class Redmine::Helpers::GanttHelperTest < ActionView::TestCase
|
||||||
@project = project
|
@project = project
|
||||||
@gantt = Redmine::Helpers::Gantt.new(options)
|
@gantt = Redmine::Helpers::Gantt.new(options)
|
||||||
@gantt.project = @project
|
@gantt.project = @project
|
||||||
@gantt.query = Query.generate_default!(:project => @project)
|
@gantt.query = Query.create!(:project => @project, :name => 'Gantt')
|
||||||
@gantt.view = self
|
@gantt.view = self
|
||||||
@gantt.instance_variable_set('@date_from', options[:date_from] || 2.weeks.ago.to_date)
|
@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)
|
@gantt.instance_variable_set('@date_to', options[:date_to] || 2.weeks.from_now.to_date)
|
||||||
|
|
Loading…
Reference in New Issue