Sha256: 717acce83233fa794962e16221a6438c3b75045f0d1fb48a4b8d3757a77cdf0f

Contents?: true

Size: 1.09 KB

Versions: 11

Compression:

Stored size: 1.09 KB

Contents

Shindo.tests('Fog::Compute[:libvirt] | network model', ['libvirt']) do

  networks = Fog::Compute[:libvirt].networks
  network = networks.last

  tests('The network model should') do
    tests('have the action') do
      test('reload') { network.respond_to? 'reload' }
      test('dhcp_leases') { network.respond_to? 'dhcp_leases' }
    end
    tests('have a dhcp_leases action that') do
      test('returns an array') { network.dhcp_leases('99:88:77:66:55:44', 0).kind_of? Array }
    end
    tests('have attributes') do
      model_attribute_hash = network.attributes
      attributes = [ :name, :uuid, :bridge_name]
      tests("The network model should respond to") do
        attributes.each do |attribute|
          test("#{attribute}") { network.respond_to? attribute }
        end
      end
      tests("The attributes hash should have key") do
        attributes.each do |attribute|
          test("#{attribute}") { model_attribute_hash.key? attribute }
        end
      end
    end
    test('be a kind of Fog::Libvirt::Compute::Network') { network.kind_of? Fog::Libvirt::Compute::Network }
  end

end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
fog-libvirt-0.12.2 tests/libvirt/models/compute/network_tests.rb
fog-libvirt-0.12.1 tests/libvirt/models/compute/network_tests.rb
fog-libvirt-0.12.0 tests/libvirt/models/compute/network_tests.rb
fog-libvirt-0.11.0 tests/libvirt/models/compute/network_tests.rb
fog-libvirt-0.10.1 tests/libvirt/models/compute/network_tests.rb
fog-libvirt-0.10.0 tests/libvirt/models/compute/network_tests.rb
fog-libvirt-csem-0.9.0 tests/libvirt/models/compute/network_tests.rb
fog-libvirt-0.9.0 tests/libvirt/models/compute/network_tests.rb
fog-libvirt-0.8.0 tests/libvirt/models/compute/network_tests.rb
fog-libvirt-0.7.0 tests/libvirt/models/compute/network_tests.rb
fog-libvirt-0.6.0 tests/libvirt/models/compute/network_tests.rb