Sha256: 9fa855cbd1ff1d002b249ee382398a0c123b2d1735d3b99e04369dc5b82a73ca
Contents?: true
Size: 394 Bytes
Versions: 80
Compression:
Stored size: 394 Bytes
Contents
require "test_helper" class BaseSystemTest < Test::Unit::TestCase setup do @klass = Vagrant::Systems::Base @vm = mock("vm") @instance = @klass.new(@vm) end should "provide access to the VM" do assert_equal @vm, @instance.vm end should "error on preparing host only network" do assert_raises(@klass::BaseError) { @instance.prepare_host_only_network } end end
Version data entries
80 entries across 80 versions & 9 rubygems