1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/test/nodes/test_select_statement.rb

14 lines
317 B
Ruby
Raw Normal View History

require 'helper'
2010-08-16 23:59:18 -04:00
describe Arel::Nodes::SelectStatement do
2010-08-19 01:30:21 -04:00
describe "#clone" do
2010-08-16 23:59:18 -04:00
it "clones cores" do
statement = Arel::Nodes::SelectStatement.new %w[a b c]
dolly = statement.clone
dolly.cores.must_equal statement.cores
dolly.cores.wont_be_same_as statement.cores
2010-08-16 23:59:18 -04:00
end
end
end