Skip to content
Snippets Groups Projects
Commit 6c365493 authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

tests-extra: test for zone loading failure

parent ef22aece
Branches
Tags
No related merge requests found
#!/usr/bin/env python3
'''Test for loading non-existing zone file'''
from dnstest.test import Test
t = Test()
master = t.server("knot")
zones = t.zone("notexist.", exists=False) + t.zone("wild.")
t.link(zones, master)
t.start()
# Stop master.
master.stop()
t.end()
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment