mirror of https://github.com/CIRCL/PyCIRCLean
27 lines
531 B
Python
27 lines
531 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import os
|
|
|
|
import kittengroomer as kg
|
|
from kittengroomer import FileBase
|
|
import PyCIRCLean.bin.specific as specific
|
|
|
|
PATH = os.getcwd() + '/tests/'
|
|
|
|
|
|
def test_base():
|
|
assert kg.FileBase
|
|
assert kg.KittenGroomerBase
|
|
assert kg.main
|
|
|
|
|
|
def test_help_file():
|
|
f = FileBase('tests/src/blah.conf', 'tests/dst/blah.conf')
|
|
f.make_unknown()
|
|
f.make_binary()
|
|
f.make_unknown()
|
|
f.make_dangerous()
|
|
f.make_binary()
|
|
f.make_dangerous()
|