Sha256: 224eac298206db40d8a12d2b07281f032c91d5fe606844500564290e0a161b6a

Contents?: true

Size: 844 Bytes

Versions: 17

Compression:

Stored size: 844 Bytes

Contents

require "spec_helper"

describe "bpm build the gauntlet" do
  it "should work" do
    pending "Possibly add some fixtures to test"
  end

=begin
  before do
    cd(home)
    env["HOME"] = home.to_s
    write_creds("user@example.com", "deadbeef")
  end

  {
    "ivory"                => "0.0.1",
    "jquery"               => "1.4.3",
    "optparse"             => "1.0.1",
    "web-file"             => "0.0.1",
    "web-typed-array"      => "0.0.1",
  }.each do |package, version|
    it "builds a package from #{package}" do
      FileUtils.cp_r root.join("packages/#{package}"), package
      cd package
      bpm "build"

      exit_status.should be_success
      stdout.read.should include("Successfully built package: #{package}-#{version}.bpkg")
      File.exist?(tmp.join(package, "#{package}-#{version}.bpkg"))
    end
  end
=end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
bpm-1.0.0 spec/gauntlet_spec.rb
bpm-1.0.0.rc.4 spec/gauntlet_spec.rb
bpm-1.0.0.rc.3 spec/gauntlet_spec.rb
bpm-1.0.0.rc.2 spec/gauntlet_spec.rb
bpm-1.0.0.rc.1 spec/gauntlet_spec.rb
bpm-1.0.0.beta.13 spec/gauntlet_spec.rb
bpm-1.0.0.beta.12 spec/gauntlet_spec.rb
bpm-1.0.0.beta.11 spec/gauntlet_spec.rb
bpm-1.0.0.beta.10 spec/gauntlet_spec.rb
bpm-1.0.0.beta.9 spec/gauntlet_spec.rb
bpm-1.0.0.beta.8 spec/gauntlet_spec.rb
bpm-1.0.0.beta.6 spec/gauntlet_spec.rb
bpm-1.0.0.beta.5 spec/gauntlet_spec.rb
bpm-1.0.0.beta.4 spec/gauntlet_spec.rb
bpm-0.1.4 spec/gauntlet_spec.rb
bpm-0.1.3 spec/gauntlet_spec.rb
bpm-0.1.2 spec/gauntlet_spec.rb