This conversion is done by Transpec 1.10.2 with the following command:
transpec test/unit/
* 507 conversions
from: obj.should
to: expect(obj).to
* 394 conversions
from: == expected
to: eq(expected)
* 260 conversions
from: obj.should_receive(:message)
to: expect(obj).to receive(:message)
* 85 conversions
from: obj.stub(:message)
to: allow(obj).to receive(:message)
* 25 conversions
from: its(:attr) { }
to: describe '#attr' do subject { super().attr }; it { } end
* 19 conversions
from: obj.should_not
to: expect(obj).not_to
* 7 conversions
from: obj.should_not_receive(:message)
to: expect(obj).not_to receive(:message)
* 3 conversions
from: Klass.any_instance.should_receive(:message)
to: expect_any_instance_of(Klass).to receive(:message)
41 lines
1.1 KiB
Ruby
41 lines
1.1 KiB
Ruby
require File.expand_path("../../../../base", __FILE__)
|
|
|
|
require Vagrant.source_root.join("plugins/commands/list-commands/command")
|
|
|
|
describe VagrantPlugins::CommandListCommands::Command do
|
|
include_context "unit"
|
|
include_context "command plugin helpers"
|
|
|
|
let(:iso_env) do
|
|
# We have to create a Vagrantfile so there is a root path
|
|
env = isolated_environment
|
|
env.vagrantfile("")
|
|
env.create_vagrant_env
|
|
end
|
|
|
|
let(:argv) { [] }
|
|
let(:commands) { {} }
|
|
|
|
subject { described_class.new(argv, iso_env) }
|
|
|
|
before do
|
|
Vagrant.plugin("2").manager.stub(commands: commands)
|
|
end
|
|
|
|
describe "execute" do
|
|
it "includes all subcommands" do
|
|
commands[:foo] = [command_lambda("foo", 0), { primary: true }]
|
|
commands[:bar] = [command_lambda("bar", 0), { primary: true }]
|
|
commands[:baz] = [command_lambda("baz", 0), { primary: false }]
|
|
|
|
expect(iso_env.ui).to receive(:info).with { |message, opts|
|
|
expect(message).to include("foo")
|
|
expect(message).to include("bar")
|
|
expect(message).to include("baz")
|
|
}
|
|
|
|
subject.execute
|
|
end
|
|
end
|
|
end
|