activerecord-hackery--ransack/spec/ransack/configuration_spec.rb

11 lines
203 B
Ruby
Raw Normal View History

2011-03-31 00:31:39 +00:00
require 'spec_helper'
module Ransack
describe Configuration do
it 'yields self on configure' do
Ransack.configure do
self.should eq Ransack::Configuration
end
end
end
end