1
0
Fork 0
mirror of https://github.com/drapergem/draper synced 2023-03-27 23:21:17 -04:00
draper/spec/support/samples/product.rb
Steve Tooke 7168e2ca74 Ensure NoMethodError propogates correctly.
When a delegated method calls a non-existant method the correct
NoMethodError should be called. If the NoMethodError is swallowed by
the decorator it can cause problems with BDD workflow.
2012-01-31 11:03:14 +00:00

67 lines
907 B
Ruby

class Product < ActiveRecord::Base
include Draper::ModelSupport
def self.find_by_name(name)
@@dummy ||= Product.new
end
def self.first
@@first ||= Product.new
end
def self.last
@@last ||= Product.new
end
def self.all
[Product.new, Product.new]
end
def self.scoped
[Product.new]
end
def self.model_name
"Product"
end
def self.find(id)
return Product.new
end
def self.sample_class_method
"sample class method"
end
def hello_world
"Hello, World"
end
def goodnight_moon
"Goodnight, Moon"
end
def title
"Sample Title"
end
def some_action
self.nonexistant_method
end
def block
yield
end
def self.reflect_on_association(association_symbol)
OpenStruct.new(:klass => self)
end
def similar_products
[Product.new, Product.new]
end
def previous_version
Product.new
end
end