mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-02-25 18:55:27 -06:00
22 lines
409 B
Ruby
22 lines
409 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
require 'vagrant-spec/acceptance/configuration'
|
||
|
|
|
||
|
|
module VagrantPlugins
|
||
|
|
module VagrantLibvirt
|
||
|
|
module Spec
|
||
|
|
module Acceptance
|
||
|
|
class Configuration < Vagrant::Spec::Acceptance::Configuration
|
||
|
|
attr_accessor :clean_on_fail
|
||
|
|
|
||
|
|
def initialize
|
||
|
|
super
|
||
|
|
|
||
|
|
@clean_on_fail = true
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|