1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/test/cases/arel/attributes_test.rb
Ryuta Kamizono b57b23a37b Remove unused Arel::Attributes.for
`Arel::Attributes.for` is no longer used since https://github.com/rails/arel/pull/196.
2019-06-15 23:59:41 +09:00

27 lines
710 B
Ruby

# frozen_string_literal: true
require_relative "helper"
module Arel
describe "Attributes" do
it "responds to lower" do
relation = Table.new(:users)
attribute = relation[:foo]
node = attribute.lower
assert_equal "LOWER", node.name
assert_equal [attribute], node.expressions
end
describe "equality" do
it "is equal with equal ivars" do
array = [Attribute.new("foo", "bar"), Attribute.new("foo", "bar")]
assert_equal 1, array.uniq.size
end
it "is not equal with different ivars" do
array = [Attribute.new("foo", "bar"), Attribute.new("foo", "baz")]
assert_equal 2, array.uniq.size
end
end
end
end