Sha256: 03444de4ab7c8c78c7c02eb7f2d5630dc8f5414375e63a4b2cb7f9d0bfa4a656

Contents?: true

Size: 1.31 KB

Versions: 5

Compression:

Stored size: 1.31 KB

Contents

require "spec_helper"

describe "bundle help" do
  # Rubygems 1.4+ no longer load gem plugins so this test is no longer needed
  rubygems_under_14 = Gem::Requirement.new("< 1.4").satisfied_by?(Gem::Version.new(Gem::VERSION))
  it "complains if older versions of bundler are installed", :if => rubygems_under_14 do
    system_gems "bundler-0.8.1"

    bundle "help", :expect_err => true
    expect(err).to include("Please remove Bundler 0.8 versions.")
    expect(err).to include("This can be done by running `gem cleanup bundler`.")
  end

  it "uses groff when available" do
    fake_groff!

    bundle "help gemfile"
    expect(out).to eq(%|["-Wall", "-mtty-char", "-mandoc", "-Tascii", "#{root}/lib/bundler/man/gemfile.5"]|)
  end

  it "prefixes bundle commands with bundle- when finding the groff files" do
    fake_groff!

    bundle "help install"
    expect(out).to eq(%|["-Wall", "-mtty-char", "-mandoc", "-Tascii", "#{root}/lib/bundler/man/bundle-install"]|)
  end

  it "simply outputs the txt file when there is no groff on the path" do
    kill_path!

    bundle "help install", :expect_err => true
    expect(out).to match(/BUNDLE-INSTALL/)
  end

  it "still outputs the old help for commands that do not have man pages yet" do
    bundle "help check"
    expect(out).to include("Check searches the local machine")
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bundler-1.3.0.pre.5 spec/other/help_spec.rb
bundler-1.3.0.pre.4 spec/other/help_spec.rb
bundler-1.3.0.pre.3 spec/other/help_spec.rb
bundler-1.3.0.pre.2 spec/other/help_spec.rb
bundler-1.3.0.pre spec/other/help_spec.rb