From: Daniel Farrell Date: Tue, 24 Mar 2015 20:48:31 +0000 (-0400) Subject: Remove Debian from unsupported OSs, stub rspec X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F54%2F55454%2F1;p=integration%2Fpackaging%2Fpuppet-opendaylight.git Remove Debian from unsupported OSs, stub rspec * Gets `bundle exec rake test` passing * Relevant to #70 Change-Id: I42d500e24ad8d0c2a782dfac33c27c1aecc46af2 Signed-off-by: Daniel Farrell --- diff --git a/spec/classes/opendaylight_spec.rb b/spec/classes/opendaylight_spec.rb index 6ae7d59..63c34e8 100644 --- a/spec/classes/opendaylight_spec.rb +++ b/spec/classes/opendaylight_spec.rb @@ -79,8 +79,18 @@ describe 'opendaylight' do end end + # All tests for OSs in the Debian family (Ubuntu) + describe 'OS family Debian' do + osfamily = 'Debian' + + # All tests for Ubuntu 14.04 + describe 'Ubuntu' do + operatingsystem = 'Ubuntu' + end + end + # All tests for unsupported OS families - ['Debian', 'Suse', 'Solaris'].each do |osfamily| + ['Suse', 'Solaris'].each do |osfamily| context "OS family #{osfamily}" do let(:facts) {{ :osfamily => osfamily,