Bare bones tests module

This commit is contained in:
Eryn Wells 2013-08-29 15:05:38 -07:00
parent a926bc5a99
commit 3c21549ee9

18
tests.py Normal file
View file

@ -0,0 +1,18 @@
#!/usr/bin/env python3
# Eryn Wells <eryn@erynwells.me>
'''
Tests for sudoku.
'''
import nose
import sudoku
import unittest
def main():
nose.main()
if __name__ == '__main__':
main()