Mercurial > hg > soundsoftware-site
view test/exemplars/attachment_exemplar.rb @ 1111:7d62d2f497c5 bibplugin_bibtex
adds all the necessary hidden fieds; associates authors, users and publications. Known issues associating publications, authors and users.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Fri, 07 Dec 2012 14:39:38 +0000 |
parents | 1d32c0a0efbf |
children |
line wrap: on
line source
class Attachment < ActiveRecord::Base generator_for :container, :method => :generate_project generator_for :file, :method => :generate_file generator_for :author, :method => :generate_author def self.generate_project Project.generate! end def self.generate_author User.generate_with_protected! end def self.generate_file @file = ActiveSupport::TestCase.mock_file end end