blob: ea008f4c996dca0626f07afe6d6d7e7101400fd1 (
plain) (
tree)
|
|
require 'helper'
module Arel
module Nodes
describe 'BindParam' do
it 'is equal to other bind params' do
BindParam.new.must_equal(BindParam.new)
end
it 'is not equal to other nodes' do
BindParam.new.wont_equal(Node.new)
end
end
end
end
|