Browse Source

Now testing if unbound is running and listening on v4 and v6 interfaces

Till Klocke 9 years ago
parent
commit
41c8ce33c9
1 changed files with 9 additions and 0 deletions
  1. 9 0
      test/integration/supernode/serverspec/test_spec.rb

+ 9 - 0
test/integration/supernode/serverspec/test_spec.rb

@@ -11,4 +11,13 @@ end
 
 describe port(67) do
   it { should be_listening.with('udp') }
+end
+
+describe process('unbound') do
+  it { should be_running }
+end
+
+describe port(53) do
+  it { should be_listening.with('udp') }
+  it { should be_listening.with('udp6') }
 end