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

11 lines
203 B
Ruby

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