1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/bundler/bundler/ruby_dsl_spec.rb
hsbt 8598f8c2dc Merge bundler to standard libraries.
rubygems 2.7.x depends bundler-1.15.x. This is preparation for
  rubygems and bundler migration.

  * lib/bundler.rb, lib/bundler/*: files of bundler-1.15.4
  * spec/bundler/*: rspec examples of bundler-1.15.4. I applied patches.
    * https://github.com/bundler/bundler/pull/6007
    * Exclude not working examples on ruby repository.
    * Fake ruby interpriter instead of installed ruby.
  * Makefile.in: Added test task named `test-bundler`. This task is only
    working macOS/linux yet. I'm going to support Windows environment later.
  * tool/sync_default_gems.rb: Added sync task for bundler.

  [Feature #12733][ruby-core:77172]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59779 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2017-09-08 08:45:41 +00:00

95 lines
2.4 KiB
Ruby

# frozen_string_literal: true
require "spec_helper"
require "bundler/ruby_dsl"
RSpec.describe Bundler::RubyDsl do
class MockDSL
include Bundler::RubyDsl
attr_reader :ruby_version
end
let(:dsl) { MockDSL.new }
let(:ruby_version) { "2.0.0" }
let(:version) { "2.0.0" }
let(:engine) { "jruby" }
let(:engine_version) { "9000" }
let(:patchlevel) { "100" }
let(:options) do
{ :patchlevel => patchlevel,
:engine => engine,
:engine_version => engine_version }
end
let(:invoke) do
proc do
args = Array(ruby_version) + [options]
dsl.ruby(*args)
end
end
subject do
invoke.call
dsl.ruby_version
end
describe "#ruby_version" do
shared_examples_for "it stores the ruby version" do
it "stores the version" do
expect(subject.versions).to eq(Array(ruby_version))
expect(subject.gem_version.version).to eq(version)
end
it "stores the engine details" do
expect(subject.engine).to eq(engine)
expect(subject.engine_versions).to eq(Array(engine_version))
end
it "stores the patchlevel" do
expect(subject.patchlevel).to eq(patchlevel)
end
end
context "with a plain version" do
it_behaves_like "it stores the ruby version"
end
context "with a single requirement" do
let(:ruby_version) { ">= 2.0.0" }
it_behaves_like "it stores the ruby version"
end
context "with two requirements in the same string" do
let(:ruby_version) { ">= 2.0.0, < 3.0" }
it "raises an error" do
expect { subject }.to raise_error(ArgumentError)
end
end
context "with two requirements" do
let(:ruby_version) { ["~> 2.0.0", "> 2.0.1"] }
it_behaves_like "it stores the ruby version"
end
context "with multiple engine versions" do
let(:engine_version) { ["> 200", "< 300"] }
it_behaves_like "it stores the ruby version"
end
context "with no options hash" do
let(:invoke) { proc { dsl.ruby(ruby_version) } }
let(:patchlevel) { nil }
let(:engine) { "ruby" }
let(:engine_version) { version }
it_behaves_like "it stores the ruby version"
context "and with multiple requirements" do
let(:ruby_version) { ["~> 2.0.0", "> 2.0.1"] }
let(:engine_version) { ruby_version }
it_behaves_like "it stores the ruby version"
end
end
end
end