Sha256: eee2a486086417d122909f085674bbf78950d73ce3c843751637c784ab89afcd
Contents?: true
Size: 578 Bytes
Versions: 7
Compression:
Stored size: 578 Bytes
Contents
require 'spec_helper' module Alf describe Operator::NonRelational do specify "each" do x = [] Operator::NonRelational.each{|m| x << m} x.sort{|m1,m2| m1.name.to_s <=> m2.name.to_s}.should == [ Alf::Operator::NonRelational::Autonum, Alf::Operator::NonRelational::Clip, Alf::Operator::NonRelational::Coerce, Alf::Operator::NonRelational::Compact, Alf::Operator::NonRelational::Defaults, Alf::Operator::NonRelational::Generator, Alf::Operator::NonRelational::Sort, ] end end end
Version data entries
7 entries across 7 versions & 1 rubygems