flowerbox/lib/flowerbox/test_environment.rb
2012-03-02 13:28:52 -05:00

11 lines
197 B
Ruby

module Flowerbox
module TestEnvironment
class << self
def for(env)
self.const_get(self.constants.find { |c| c.to_s.downcase.to_s == env.to_s }).new
end
end
end
end