Skip to content

Commit

Permalink
NIR offline test base (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
secynic committed Jul 9, 2016
1 parent 07bc367 commit 71ac910
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions ipwhois/tests/test_nir.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import logging
from ipwhois.tests import TestCommon
from ipwhois.net import (Net)
from ipwhois.nir import (NIRWhois)

LOG_FORMAT = ('[%(asctime)s] [%(levelname)s] [%(filename)s:%(lineno)s] '
'[%(funcName)s()] %(message)s')
logging.basicConfig(level=logging.DEBUG, format=LOG_FORMAT)
log = logging.getLogger(__name__)


class TestNIR(TestCommon):

def test__NIRWhoisLookup(self):

return

0 comments on commit 71ac910

Please sign in to comment.