You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/lib/rack-mini-profiler/spec/components/config_spec.rb

14 lines
255 B

require 'spec_helper'
require 'rack-mini-profiler'
module Rack
describe MiniProfiler::Config do
describe '.default' do
it 'has "enabled" set to true' do
MiniProfiler::Config.default.enabled.should be_true
end
end
end
end