Sha256: 6b5b444ee62a03c6eea42eb64e71c7f4ed0b95242e424659fa2ce6ccb6931b21
Contents?: true
Size: 1.86 KB
Versions: 5
Compression:
Stored size: 1.86 KB
Contents
module Factory # Build actions for the model def self.build(model, &block) name = model.to_s.underscore define_method("#{name}_attributes", block) define_method("valid_#{name}_attributes") {|*args| valid_attributes_for(model, *args)} define_method("new_#{name}") {|*args| new_record(model, *args)} define_method("create_#{name}") {|*args| create_record(model, *args)} end # Get valid attributes for the model def valid_attributes_for(model, attributes = {}) name = model.to_s.underscore send("#{name}_attributes", attributes) attributes.stringify_keys! attributes end # Build an unsaved record def new_record(model, *args) attributes = valid_attributes_for(model, *args) record = model.new(attributes) attributes.each {|attr, value| record.send("#{attr}=", value) if model.accessible_attributes && !model.accessible_attributes.include?(attr) || model.protected_attributes && model.protected_attributes.include?(attr)} record end # Build and save/reload a record def create_record(model, *args) record = new_record(model, *args) record.save! record.reload record end build Email do |attributes| attributes[:sender] = create_user unless attributes.include?(:sender) attributes.reverse_merge!( :subject => 'New features', :body => 'Lots of new things to talk about... come to the meeting tonight to find out!' ) end build EmailAddress do |attributes| attributes.reverse_merge!( :name => 'John Smith', :spec => 'john.smith@gmail.com' ) end build MessageRecipient do |attributes| attributes[:message] = create_message unless attributes.include?(:message) attributes[:receiver] = create_user(:login => 'me') unless attributes.include?(:receiver) attributes.reverse_merge!( :kind => 'to' ) end end
Version data entries
5 entries across 5 versions & 2 rubygems
Version | Path |
---|---|
pluginaweek-has_emails-0.3.0 | test/factory.rb |
has_emails-0.1.4 | test/factory.rb |
has_emails-0.2.0 | test/factory.rb |
has_emails-0.2.1 | test/factory.rb |
has_emails-0.3.0 | test/factory.rb |