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.

2 thoughts on “Fake Rails environment

Comments are closed.