Sha256: ae28455d69c97f13cabe857d76a55102e90ff35139065fac3e29462d053887d0

Contents?: true

Size: 846 Bytes

Versions: 6

Compression:

Stored size: 846 Bytes

Contents

require 'spec_helper'
module Alf
  module Operator::NonRelational
    describe Compact::SortBased do
        
      let(:input) {[
        {:a => "via_method", :time => 1, :b => "b"},
        {:a => "via_method", :time => 1, :b => "b"},
        {:a => "via_method", :time => 2, :b => "b"},
        {:a => "via_reader", :time => 3, :b => "b"},
        {:a => "via_reader", :time => 3, :b => "b"},
      ]}
  
      let(:expected) {[
        {:a => "via_method", :time => 1, :b => "b"},
        {:a => "via_method", :time => 2, :b => "b"},
        {:a => "via_reader", :time => 3, :b => "b"},
      ]}
  
      subject{ operator.to_a }
  
      describe "when factored with commandline args" do
        let(:operator){ Compact::SortBased.new }
        before{ operator.pipe(input) }
        it { should == expected }
      end
  
    end 
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
alf-0.10.1 spec/unit/operator/non_relational/compact/test_sort_based.rb
alf-0.10.0 spec/unit/operator/non_relational/compact/test_sort_based.rb
alf-0.9.3 spec/unit/operator/non_relational/compact/test_sort_based.rb
alf-0.9.2 spec/unit/operator/non_relational/compact/test_sort_based.rb
alf-0.9.1 spec/unit/operator/non_relational/compact/test_sort_based.rb
alf-0.9.0 spec/operator/non_relational/compact/sort_based_spec.rb