Remove Debian from unsupported OSs, stub rspec 54/55454/1
authorDaniel Farrell <dfarrell@redhat.com>
Tue, 24 Mar 2015 20:48:31 +0000 (16:48 -0400)
committerDaniel Farrell <dfarrell@redhat.com>
Wed, 19 Apr 2017 19:18:39 +0000 (15:18 -0400)
* Gets `bundle exec rake test` passing
* Relevant to #70

Change-Id: I42d500e24ad8d0c2a782dfac33c27c1aecc46af2
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
spec/classes/opendaylight_spec.rb

index 6ae7d5972bb30591a7d3997cf631eb87347b142a..63c34e81290fc7000479f2975c0f3ceb46d7bc30 100644 (file)
@@ -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,