-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #522 from joshmgrant/consistency_check_test
Test Case for `tools.consistency_check`
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
"""Test the consistency_check function from the tools.py module.""" | ||
from __future__ import absolute_import | ||
|
||
from .check import Check | ||
|
||
from proselint.tools import consistency_check as chk | ||
|
||
|
||
class TestCheck(Check): | ||
"""The test class for tools.consistency_check.""" | ||
|
||
__test__ = True | ||
|
||
@property | ||
def this_check(self): | ||
"""Bolierplate.""" | ||
return chk | ||
|
||
def setUp(self): | ||
"""Create some test fixtures.""" | ||
self.l = [['colour', 'color']] | ||
self.err = 'error message' | ||
self.msg = 'inconsistent form of {} vs {}' | ||
|
||
def test_smoke(self): | ||
"""Basic smoke test for consistency_check.""" | ||
assert chk( | ||
"Painting colour on color", self.l, self.err, self.msg) != [] | ||
assert chk( | ||
"Painting colour on colour", self.l, self.err, self.msg) == [] | ||
assert chk( | ||
"Painting color on color", self.l, self.err, self.msg) == [] |