X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fvswitch%2Fspec%2Fclasses%2Fvswitch_ovs_spec.rb;fp=3rdparty%2Fmodules%2Fvswitch%2Fspec%2Fclasses%2Fvswitch_ovs_spec.rb;h=0000000000000000000000000000000000000000;hb=6e1426dc77fb4e5d51f07c187c6f2219431dc31e;hp=de7e14651f04e0b57dea737c425403a93f92b381;hpb=87423ba664cd5f2bb462ebadd08b1a90d0fe1c8d;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/vswitch/spec/classes/vswitch_ovs_spec.rb b/3rdparty/modules/vswitch/spec/classes/vswitch_ovs_spec.rb deleted file mode 100644 index de7e14651..000000000 --- a/3rdparty/modules/vswitch/spec/classes/vswitch_ovs_spec.rb +++ /dev/null @@ -1,27 +0,0 @@ -require 'spec_helper' - -describe 'vswitch::ovs' do - - context 'on redhat with default parameters' do - - let :facts do - {:osfamily => 'Redhat'} - end - - it 'should contain the correct package and service' do - - should contain_service('openvswitch').with( - :ensure => true, - :enable => true, - :name => 'openvswitch' - ) - - should contain_package('openvswitch').with( - :name => 'openvswitch', - :ensure => 'present', - :before => 'Service[openvswitch]' - ) - - end - end -end