mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-21 08:55:35 -05:00
12 lines
296 B
Ruby
12 lines
296 B
Ruby
shared_context "command plugin helpers" do
|
|
def command_lambda(name, result, **opts)
|
|
lambda do
|
|
Class.new(Vagrant.plugin("2", "command")) do
|
|
define_method(:execute) do
|
|
raise opts[:exception] if opts[:exception]
|
|
result
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|