aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/engines/sql/unit/predicates/predicates_spec.rb
diff options
context:
space:
mode:
authorBryan Helmkamp <bryan@brynary.com>2009-09-30 23:32:05 -0400
committerBryan Helmkamp <bryan@brynary.com>2009-09-30 23:32:05 -0400
commitbcd8ffa2183a1ca98417fb39bbd83e8f69c984c8 (patch)
tree36eac8c0fdd0a6a126a10dd7ad829401793a9379 /spec/arel/engines/sql/unit/predicates/predicates_spec.rb
parent52e8aff146c162986566d3e03852395729d7c24d (diff)
downloadrails-bcd8ffa2183a1ca98417fb39bbd83e8f69c984c8.tar.gz
rails-bcd8ffa2183a1ca98417fb39bbd83e8f69c984c8.tar.bz2
rails-bcd8ffa2183a1ca98417fb39bbd83e8f69c984c8.zip
Create Predicates module to match directory structure
Diffstat (limited to 'spec/arel/engines/sql/unit/predicates/predicates_spec.rb')
-rw-r--r--spec/arel/engines/sql/unit/predicates/predicates_spec.rb92
1 files changed, 47 insertions, 45 deletions
diff --git a/spec/arel/engines/sql/unit/predicates/predicates_spec.rb b/spec/arel/engines/sql/unit/predicates/predicates_spec.rb
index fe0010a8cb..7d53351546 100644
--- a/spec/arel/engines/sql/unit/predicates/predicates_spec.rb
+++ b/spec/arel/engines/sql/unit/predicates/predicates_spec.rb
@@ -1,62 +1,64 @@
require 'spec_helper'
module Arel
- describe Predicate do
- before do
- @relation = Table.new(:users)
- @attribute1 = @relation[:id]
- @attribute2 = @relation[:name]
- @operand1 = Equality.new(@attribute1, 1)
- @operand2 = Equality.new(@attribute2, "name")
- end
+ module Predicates
+ describe Predicate do
+ before do
+ @relation = Table.new(:users)
+ @attribute1 = @relation[:id]
+ @attribute2 = @relation[:name]
+ @operand1 = Equality.new(@attribute1, 1)
+ @operand2 = 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
+ 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 :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 :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')
- })
+ adapter_is :postgresql do
+ sql.should be_like(%Q{
+ ("users"."id" = 1 AND "users"."name" = E'name')
+ })
+ end
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
+ 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 :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 :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')
- })
+ adapter_is :postgresql do
+ sql.should be_like(%Q{
+ ("users"."id" = 1 OR "users"."name" = E'name')
+ })
+ end
end
end
end