PyCIRCLean/tests/test_integration.py

26 lines
496 B
Python
Raw Normal View History

2016-11-30 20:19:08 +01:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import kittengroomer as kg
import bin.specific as specific
2016-11-30 20:19:08 +01:00
PATH = os.getcwd() + '/tests/'
def test_base():
assert kg.FileBase
assert kg.KittenGroomerBase
assert kg.main
def test_help_file():
f = kg.FileBase('tests/src_complex/blah.conf', 'tests/dst/blah.conf')
2016-11-30 20:19:08 +01:00
f.make_unknown()
f.make_binary()
f.make_unknown()
f.make_dangerous()
f.make_binary()
f.make_dangerous()