Fake Rails environment
For testing some bits inside of ActiveRecord proper.
module Rails def self.env o = Class.new do def production? true end end o.new end end
Evil and fun. Uses Class.new
, my favorite Ruby method.
Muahahaha.
For testing some bits inside of ActiveRecord proper.
module Rails def self.env o = Class.new do def production? true end end o.new end end
Evil and fun. Uses Class.new
, my favorite Ruby method.
Muahahaha.