Skip to content

Commit

Permalink
Add a module for slice operations.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham committed Dec 12, 2016
1 parent a73b7d7 commit 79b31dc
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
4 changes: 4 additions & 0 deletions kenjutsu/operators.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
__author__ = "John Kirkham <kirkhamj@janelia.hhmi.org>"
__date__ = "$Dec 08, 2016 16:20:14 GMT-0500$"


22 changes: 22 additions & 0 deletions tests/test_operators.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
__author__ = "John Kirkham <kirkhamj@janelia.hhmi.org>"
__date__ = "$Dec 08, 2016 16:20:14 GMT-0500$"


import doctest
import unittest

from kenjutsu import operators


# Load doctests from `operators`.
def load_tests(loader, tests, ignore):
try:
tests.addTests(doctest.DocTestSuite(operators))
except ValueError:
pass

return tests


class TestOperators(unittest.TestCase):
pass

0 comments on commit 79b31dc

Please sign in to comment.