Sha256: c2bc0544a50e5a1548d0dbcbdb05c14346c60f9f9d8c0df387d90cdafef88e9a

Contents?: true

Size: 302 Bytes

Versions: 5

Compression:

Stored size: 302 Bytes

Contents

require 'spec_helper'
module Alf::Shell::Operator
  describe Compact do

    let(:input){ [] }
    subject{ Compact.run(argv) }

    context "the default config" do
      let(:argv){ [input] }
      specify{
        subject.should be_a(Alf::Operator::NonRelational::Compact)
      }
    end

  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
alf-0.12.2 spec/unit/alf-shell/operator/test_compact.rb
alf-0.12.1 spec/unit/alf-shell/operator/test_compact.rb
alf-0.12.0 spec/unit/alf-shell/operator/test_compact.rb
alf-0.11.1 spec/unit/alf-shell/operator/test_compact.rb
alf-0.11.0 spec/unit/alf-shell/operator/test_compact.rb