Sha256: fa0b72dc044d5558dc2c6d9a324bafdab93a033b804173553dd80e0ad740cc86
Contents?: true
Size: 550 Bytes
Versions: 54
Compression:
Stored size: 550 Bytes
Contents
require 'vm_shepherd/data_object' require 'vm_shepherd/vcloud/vapp_config' module VmShepherd module Vcloud RSpec.describe(VappConfig) do subject(:vapp_config) do VappConfig.new( name: 'NAME', ip: 'IP', gateway: 'GATEWAY', netmask: 'NETMASK', dns: 'DNS', ntp: 'NTP', catalog: 'CATALOG', network: 'NETWORK', ) end it 'is a DataObject' do expect(vapp_config).to be_a(DataObject) end end end end
Version data entries
54 entries across 54 versions & 1 rubygems