Sha256: 19686d0de2d09e2c09c752dac3f1aa99345348806d157ad8354ae6886992d560
Contents?: true
Size: 1.86 KB
Versions: 3
Compression:
Stored size: 1.86 KB
Contents
require 'spec_helper' module Arel module Predicates describe Predicate do before do @relation = Arel::Table.new(:users) @attribute1 = @relation[:id] @attribute2 = @relation[:name] @operand1 = Arel::Predicates::Equality.new(@attribute1, 1) @operand2 = Arel::Predicates::Equality.new(@attribute2, "name") end describe "when being combined with another predicate with AND logic" do describe "#to_sql" do it "manufactures sql with an AND operation" do sql = @operand1.and(@operand2).to_sql adapter_is :mysql do sql.should be_like(%Q{ (`users`.`id` = 1 AND `users`.`name` = 'name') }) end adapter_is :sqlite3 do sql.should be_like(%Q{ ("users"."id" = 1 AND "users"."name" = 'name') }) end adapter_is :postgresql do sql.should be_like(%Q{ ("users"."id" = 1 AND "users"."name" = E'name') }) end end end end describe "when being combined with another predicate with OR logic" do describe "#to_sql" do it "manufactures sql with an OR operation" do sql = @operand1.or(@operand2).to_sql adapter_is :mysql do sql.should be_like(%Q{ (`users`.`id` = 1 OR `users`.`name` = 'name') }) end adapter_is :sqlite3 do sql.should be_like(%Q{ ("users"."id" = 1 OR "users"."name" = 'name') }) end adapter_is :postgresql do sql.should be_like(%Q{ ("users"."id" = 1 OR "users"."name" = E'name') }) end end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems