1
0
Fork 0
mirror of https://github.com/drapergem/draper synced 2023-03-27 23:21:17 -04:00
draper/spec/support/samples/namespaced_product.rb
2011-11-01 01:55:20 +08:00

51 lines
798 B
Ruby

require './spec/support/samples/product'
module Namespace
class Product < ActiveRecord::Base
include Draper::ModelSupport
def self.first
@@first ||= Namespace::Product.new
end
def self.last
@@last ||= Namespace::Product.new
end
def self.all
[Namespace::Product.new, Namespace::Product.new]
end
def self.scoped
[Namespace::Product.new]
end
def self.model_name
"Namespace::Product"
end
def self.find(id)
return Namespace::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 block
yield
end
end
end