mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
fix source indent of test/unit/query_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20200 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -2213,15 +2213,21 @@ class QueryTest < ActiveSupport::TestCase
|
||||
end
|
||||
|
||||
def test_build_from_params_should_not_update_query_with_nil_param_values
|
||||
q = IssueQuery.create!(:name => 'Query',
|
||||
:type => "IssueQuery",
|
||||
:user => User.find(7),
|
||||
:filters => {"status_id" => {:values => ["1"], :operator => "o"}},
|
||||
:column_names => [:tracker, :status],
|
||||
:sort_criteria => ['id', 'asc'],
|
||||
:group_by => "project",
|
||||
:options => { :totalable_names=>[:estimated_hours], :draw_relations => '1', :draw_progress_line => '1' }
|
||||
)
|
||||
q =
|
||||
IssueQuery.create!(
|
||||
:name => 'Query',
|
||||
:type => "IssueQuery",
|
||||
:user => User.find(7),
|
||||
:filters => {"status_id" => {:values => ["1"], :operator => "o"}},
|
||||
:column_names => [:tracker, :status],
|
||||
:sort_criteria => ['id', 'asc'],
|
||||
:group_by => "project",
|
||||
:options => {
|
||||
:totalable_names=>[:estimated_hours],
|
||||
:draw_relations => '1',
|
||||
:draw_progress_line => '1'
|
||||
}
|
||||
)
|
||||
old_attributes = q.attributes
|
||||
q.build_from_params({})
|
||||
assert_equal old_attributes, q.attributes
|
||||
|
||||
Reference in New Issue
Block a user