mirror of https://github.com/CIRCL/PyCIRCLean
Add more tests
parent
74fe05cbe1
commit
5cecd6625c
|
@ -4,6 +4,8 @@
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from bin.specific import KittenGroomerSpec
|
from bin.specific import KittenGroomerSpec
|
||||||
|
from bin.pier9 import KittenGroomerPier9
|
||||||
|
from bin.generic import KittenGroomer
|
||||||
|
|
||||||
|
|
||||||
class TestBasic(unittest.TestCase):
|
class TestBasic(unittest.TestCase):
|
||||||
|
@ -14,3 +16,11 @@ class TestBasic(unittest.TestCase):
|
||||||
def test_specific(self):
|
def test_specific(self):
|
||||||
spec = KittenGroomerSpec('tests/src', 'tests/dst')
|
spec = KittenGroomerSpec('tests/src', 'tests/dst')
|
||||||
spec.processdir()
|
spec.processdir()
|
||||||
|
|
||||||
|
def test_pier9(self):
|
||||||
|
spec = KittenGroomerPier9('tests/src', 'tests/dst')
|
||||||
|
spec.processdir()
|
||||||
|
|
||||||
|
def test_generic(self):
|
||||||
|
spec = KittenGroomer('tests/src', 'tests/dst')
|
||||||
|
spec.processdir()
|
||||||
|
|
Loading…
Reference in New Issue