aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/algebra/unit/relations/alias_spec.rb
blob: 2aa4d52d998557bb39a8d0aca4ce91f5ec664dd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'spec_helper'

module Arel
  describe Alias do
    before do
      @relation = Table.new(:users)
    end

    describe '==' do
      it "obtains if the objects are the same" do
        Alias.new(@relation).should_not == Alias.new(@relation)
        (aliaz = Alias.new(@relation)).should == aliaz
      end
    end
  end
end