]> git.openstreetmap.org Git - chef.git/blobdiff - test/integration/bind/serverspec/bind_spec.rb
Check that servers are listening on the right protocols
[chef.git] / test / integration / bind / serverspec / bind_spec.rb
index bdf529cf326eb2e361734ea24b45e678732dd32c..8986df12c2d31be57e352fae740e893c6c8c1b12 100644 (file)
@@ -13,5 +13,6 @@ describe service("bind9") do
 end
 
 describe port(53) do
-  it { should be_listening }
+  it { should be_listening.with("udp") }
+  it { should be_listening.with("tcp") }
 end