Sha256: fe487ae0ffbb33ff6d310cdcb153688ac271b41dc44d7600d263eeb078eea7c0

Contents?: true

Size: 483 Bytes

Versions: 1

Compression:

Stored size: 483 Bytes

Contents

require_relative "../test-util"

describe "Pione::Command::PionePackage" do
  it "should build PIONE package" do
    package_location = TestUtil::Package.get("TestPackage1")
    output_location = Location[Temppath.mkdir]
    res = TestUtil::Command.succeed do
      Command::PionePackage.run ["--build", "-o", output_location.path.to_s, package_location.path.to_s]
    end
    pkg = output_location + "TestPackage1+v0.1.0.ppg"
    pkg.should.exist
    pkg.size.should > 0
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pione-0.2.2 test/command/spec_pione-package.rb