Create tests for Dropbear SSH version comparison.

This commit is contained in:
Andris Raugulis
2016-09-12 19:23:27 +03:00
parent 3aaad8b734
commit 74a1ca08ee
2 changed files with 87 additions and 0 deletions

10
test/conftest.py Normal file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os, sys
import pytest
@pytest.fixture(scope='module')
def ssh_audit():
__rdir = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..')
sys.path.append(os.path.abspath(__rdir))
return __import__('ssh-audit')