aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-07-28 13:55:22 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-07-28 14:55:00 -0700
commitafcfe97517f6c0c872c0eb79fc505cf85b1a3e74 (patch)
tree99eada88a1257146aefff7e2f25ce678f4f2441d /spec
parenta0425099d78c1884478ee3e69a09ea5f7afa1aa9 (diff)
downloadrails-afcfe97517f6c0c872c0eb79fc505cf85b1a3e74.tar.gz
rails-afcfe97517f6c0c872c0eb79fc505cf85b1a3e74.tar.bz2
rails-afcfe97517f6c0c872c0eb79fc505cf85b1a3e74.zip
speed up method lookup and reduce API footprint
Diffstat (limited to 'spec')
-rw-r--r--spec/algebra/unit/primitives/attribute_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/algebra/unit/primitives/attribute_spec.rb b/spec/algebra/unit/primitives/attribute_spec.rb
index d030e60a4c..08d32614a1 100644
--- a/spec/algebra/unit/primitives/attribute_spec.rb
+++ b/spec/algebra/unit/primitives/attribute_spec.rb
@@ -7,7 +7,7 @@ module Arel
@attribute = @relation[:id]
end
- describe Attribute::Transformations do
+ describe 'Attribute::Transformations' do
describe '#as' do
it "manufactures an aliased attributed" do
@attribute.as(:alias).should == Attribute.new(@relation, @attribute.name, :alias => :alias, :ancestor => @attribute)