Преглед изворни кода

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

Till Klocke пре 9 година
родитељ
комит
41c8ce33c9
1 измењених фајлова са 9 додато и 0 уклоњено
  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