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

Version Path
alf-0.12.2 spec/unit/alf-core/operator/test_non_relational.rb
alf-0.12.1 spec/unit/alf-core/operator/test_non_relational.rb
alf-0.12.0 spec/unit/alf-core/operator/test_non_relational.rb
alf-0.11.1 spec/unit/alf-core/operator/test_non_relational.rb
alf-0.11.0 spec/unit/alf-core/operator/test_non_relational.rb
alf-0.10.1 spec/unit/operator/test_non_relational.rb
alf-0.10.0 spec/unit/operator/test_non_relational.rb