Sha256: 1c502cfd1c2b57f9b4196ee37bd8e7398fe73859f5130089c7614bd623bfab8b
Contents?: true
Size: 653 Bytes
Versions: 1
Compression:
Stored size: 653 Bytes
Contents
require 'spec_helper' module Alf module Algebra describe Relational do specify "each" do x = [] Relational.each{|m| x << m} x.sort{|m1,m2| m1.name.to_s <=> m2.name.to_s}.should == [ Allbut, Extend, Frame, Group, Hierarchize, Intersect, Join, Matching, Minus, NotMatching, Page, Project, Quota, Rank, Rename, Restrict, Summarize, Ungroup, Union, Unwrap, Wrap, ] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
alf-core-0.15.0 | spec/unit/alf-algebra/support/test_relational.rb |