summaryrefslogtreecommitdiffstats
path: root/test/object_helpers.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2014-10-24 18:41:35 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2014-10-24 18:41:35 +0000
commit67c4936908e6bc9ac613b41d3ae00b48a4801daf (patch)
treeeaa907b56b3a3abc20ec980b12d74f3b5d9bd5a2 /test/object_helpers.rb
parentb63123ac1e52f04a1c41fc195671a7b94744e25f (diff)
downloadredmine-67c4936908e6bc9ac613b41d3ae00b48a4801daf.tar.gz
redmine-67c4936908e6bc9ac613b41d3ae00b48a4801daf.zip
Restores commits reverted when rails-4.1 branch was merged (#18174).
Patch by Mischa The Evil. git-svn-id: http://svn.redmine.org/redmine/trunk@13504 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/object_helpers.rb')
-rw-r--r--test/object_helpers.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/object_helpers.rb b/test/object_helpers.rb
index 1469e6aff..f3c671bf5 100644
--- a/test/object_helpers.rb
+++ b/test/object_helpers.rb
@@ -178,6 +178,14 @@ module ObjectHelpers
changeset.save!
changeset
end
+
+ def Query.generate!(attributes={})
+ query = new(attributes)
+ query.name = "Generated query" if query.name.blank?
+ query.user ||= User.find(1)
+ query.save!
+ query
+ end
end
module IssueObjectHelpers