Bare bones tests module
This commit is contained in:
parent
a926bc5a99
commit
3c21549ee9
1 changed files with 18 additions and 0 deletions
18
tests.py
Normal file
18
tests.py
Normal 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()
|
Loading…
Add table
Add a link
Reference in a new issue