Fixing unit tests
This commit is contained in:
@@ -7,6 +7,7 @@ import os
|
|||||||
|
|
||||||
class Configuration(object):
|
class Configuration(object):
|
||||||
''' Stores configuration variables and functions for Wifite. '''
|
''' Stores configuration variables and functions for Wifite. '''
|
||||||
|
verbose = 0
|
||||||
|
|
||||||
initialized = False # Flag indicating config has been initialized
|
initialized = False # Flag indicating config has been initialized
|
||||||
temp_dir = None # Temporary directory
|
temp_dir = None # Temporary directory
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
import sys
|
import sys
|
||||||
sys.path.insert(0, '..')
|
sys.path.insert(0, '..')
|
||||||
|
|
||||||
from Handshake import Handshake
|
from py.Handshake import Handshake
|
||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
@@ -20,7 +20,6 @@ class TestHandshake(unittest.TestCase):
|
|||||||
|
|
||||||
def testAnalyze(self):
|
def testAnalyze(self):
|
||||||
hs_file = self.getFile('handshake_exists.cap')
|
hs_file = self.getFile('handshake_exists.cap')
|
||||||
print hs_file
|
|
||||||
hs = Handshake(hs_file, bssid='A4:2B:8C:16:6B:3A')
|
hs = Handshake(hs_file, bssid='A4:2B:8C:16:6B:3A')
|
||||||
try:
|
try:
|
||||||
hs.analyze()
|
hs.analyze()
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/python2.7
|
#!/usr/bin/python2.7
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
from Airodump import Airodump
|
from py.Airodump import Airodump
|
||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
python2.7 -m unittest discover py
|
python2.7 -m unittest discover py/tests -v
|
||||||
|
|||||||
Reference in New Issue
Block a user