Mercurial > hg > soundsoftware-site
view test/object_daddy_helpers.rb @ 471:49fb7a9ef79c feature_36
Using Authorships instead of Authors in the new/show actions of the publication controller.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Fri, 24 Jun 2011 15:11:30 +0100 |
parents | 40f7cfd4df19 |
children |
line wrap: on
line source
module ObjectDaddyHelpers # TODO: Remove these three once everyone has ported their code to use the # new object_daddy version with protected attribute support def User.generate_with_protected(attributes={}) User.generate(attributes) end def User.generate_with_protected!(attributes={}) User.generate!(attributes) end def User.spawn_with_protected(attributes={}) User.spawn(attributes) end def User.add_to_project(user, project, roles) roles = [roles] unless roles.is_a?(Array) Member.generate!(:principal => user, :project => project, :roles => roles) end # Generate the default Query def Query.generate_default!(attributes={}) query = Query.spawn(attributes) query.name ||= '_' query.save! query end # Generate an issue for a project, using it's trackers def Issue.generate_for_project!(project, attributes={}) issue = Issue.spawn(attributes) do |issue| issue.project = project issue.tracker = project.trackers.first unless project.trackers.empty? yield issue if block_given? end issue.save! issue end end