Sha256: ab3b622100120dea55361e90d98b77a574294ed8535694f979dbd7b902938207
Contents?: true
Size: 2 KB
Versions: 2
Compression:
Stored size: 2 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') describe Piglet::Relation do before do @relation = Object.new @relation.extend Piglet::Relation end it 'has a alias' do @relation.alias.should_not be_nil end it 'has a unique alias' do aliases = { } 1000.times do @relation = Object.new @relation.extend Piglet::Relation aliases.should_not have_key(@relation.alias) aliases[@relation.alias] = @relation end end describe '#group' do it 'returns a new relation with the target relation as source' do @relation.group(:a).sources.should include(@relation) end end describe '#distinct' do it 'returns a new relation with the target relation as source' do @relation.distinct.sources.should include(@relation) end end describe '#cross' do it 'returns a new relation with the target relation as one of the sources' do other = Object.new other.extend Piglet::Relation @relation.cross(other).sources.should include(@relation) end end describe '#union' do it 'returns a new relation with the target relation as one of the sources' do other = Object.new other.extend Piglet::Relation @relation.union(other).sources.should include(@relation) end end describe '#sample' do it 'returns a new relation with the target relation as source' do @relation.sample(10).sources.should include(@relation) end end describe '#limit' do it 'returns a new relation with the target relation as source' do @relation.limit(42).sources.should include(@relation) end end context 'fields' do it 'returns a field for a message that does not correspond to a method' do @relation.a.should_not be_nil end it 'returns fields that have the correct name' do @relation.a.to_s.should eql('a') end it 'returns fields with positional notation' do @relation[1].to_s.should eql('$1') end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
piglet-0.1.1 | spec/piglet/relation_spec.rb |
piglet-0.1.0 | spec/piglet/relation_spec.rb |