1
0
Fork 0
mirror of https://github.com/activerecord-hackery/ransack.git synced 2022-11-09 13:47:45 -05:00
activerecord-hackery--ransack/spec/mongoid/dependencies_spec.rb
2014-10-06 14:21:22 -07:00

8 lines
227 B
Ruby

unless ::ActiveSupport::VERSION::STRING >= '4'
describe 'Ransack' do
it 'can be required without errors' do
output = `bundle exec ruby -e "require 'ransack'" 2>&1`
expect(output).to be_empty
end
end
end