Skip to content

Commit

Permalink
Full test coverage of the base module
Browse files Browse the repository at this point in the history
  • Loading branch information
arusahni committed Jun 18, 2016
1 parent c5e7d7c commit eea666e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/test_base.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""Test the base module"""

from nose.tools import raises

from preflyt.base import BaseChecker

@raises(NotImplementedError)
def test_base_checker_check():
"""Verify the base checker cannot be used"""
checker = BaseChecker()
checker.check()

0 comments on commit eea666e

Please sign in to comment.