aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/unit/primitives/value_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/arel/unit/primitives/value_spec.rb')
-rw-r--r--spec/arel/unit/primitives/value_spec.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/spec/arel/unit/primitives/value_spec.rb b/spec/arel/unit/primitives/value_spec.rb
new file mode 100644
index 0000000000..87425c780d
--- /dev/null
+++ b/spec/arel/unit/primitives/value_spec.rb
@@ -0,0 +1,28 @@
+require File.join(File.dirname(__FILE__), '..', '..', '..', 'spec_helper')
+
+module Arel
+ describe Value do
+ before do
+ @relation = Table.new(:users)
+ end
+
+ describe '#to_sql' do
+ it "appropriately quotes the value" do
+ Value.new(1, @relation).to_sql.should be_like('1')
+ Value.new('asdf', @relation).to_sql.should be_like("'asdf'")
+ end
+ end
+
+ describe '#format' do
+ it "returns the sql of the provided object" do
+ Value.new(1, @relation).format(@relation[:id]).should == @relation[:id].to_sql
+ end
+ end
+
+ describe '#bind' do
+ it "manufactures a new value whose relation is the provided relation" do
+ Value.new(1, @relation).bind(another_relation = Table.new(:photos)).should == Value.new(1, another_relation)
+ end
+ end
+ end
+end \ No newline at end of file