class RSpec::Core::Formatters::Loader
Public Instance Methods
built_in_formatter(key)
click to toggle source
# File lib/rspec-formatters/rspec.rb, line 4 def built_in_formatter(key) begin Kernel.const_get "RSpec::Formatters::#{key}" rescue NameError built_in_formatter_aliased(key) end end
Also aliased as: built_in_formatter_aliased