summaryrefslogtreecommitdiff
path: root/spec/install/gems/install_if.rb
blob: 11c7a8a1cd848aae0fe137f46d5dde9ce498de0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
require "spec_helper"

describe "bundle install with install_if conditionals" do
  it "follows the install_if DSL" do
    install_gemfile <<-G
      source "file://#{gem_repo1}"
      gem "rack"
      install_if(lambda { true }) do
        gem "activesupport", "2.3.5"
      end
      gem "thin", :install_if => false
    G

    should_be_installed("rack 1.0", "activesupport 2.3.5")
    should_not_be_installed("thin")

    lockfile_should_be <<-L
      GEM
        remote: file:#{gem_repo1}/
        specs:
          activesupport (2.3.5)
          rack (1.0.0)
          thin (1.0)
            rack

      PLATFORMS
        ruby

      DEPENDENCIES
        activesupport (= 2.3.5)
        rack
        thin

      BUNDLED WITH
         #{Bundler::VERSION}
    L
  end
end