split out path adjustments into __init__
parent
34f3f8a9c4
commit
f820c6dcb3
|
@ -0,0 +1,3 @@
|
|||
# add current working directory to path
|
||||
import sys
|
||||
sys.path.append('.')
|
|
@ -3,14 +3,11 @@ test_fcc.py - tests for the fcc callsign lookup module
|
|||
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
|
||||
"""
|
||||
|
||||
# add current working directory to path
|
||||
import sys
|
||||
sys.path.append('.')
|
||||
|
||||
import unittest
|
||||
from mock import MagicMock, Mock
|
||||
from modules.fcc import fcc
|
||||
|
||||
|
||||
class TestFcc(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.phenny = MagicMock()
|
||||
|
|
|
@ -3,15 +3,12 @@ test_hs.py - tests for the hokie stalker module
|
|||
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
|
||||
"""
|
||||
|
||||
# add current working directory to path
|
||||
import sys
|
||||
sys.path.append('.')
|
||||
|
||||
import re
|
||||
import unittest
|
||||
from mock import MagicMock, Mock
|
||||
from modules.hs import search, hs
|
||||
|
||||
|
||||
class TestHs(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.phenny = MagicMock()
|
||||
|
|
|
@ -3,15 +3,12 @@ test_imdb.py - tests for the imdb module
|
|||
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
|
||||
"""
|
||||
|
||||
# add current working directory to path
|
||||
import sys
|
||||
sys.path.append('.')
|
||||
|
||||
import re
|
||||
import unittest
|
||||
from mock import MagicMock, Mock
|
||||
from modules.imdb import imdb_search, imdb
|
||||
|
||||
|
||||
class TestImdb(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.phenny = MagicMock()
|
||||
|
|
|
@ -3,14 +3,11 @@ test_mylife.py - tests for the mylife module
|
|||
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
|
||||
"""
|
||||
|
||||
# add current working directory to path
|
||||
import sys
|
||||
sys.path.append('.')
|
||||
|
||||
import unittest
|
||||
from mock import MagicMock, Mock
|
||||
from modules import mylife
|
||||
|
||||
|
||||
class TestMylife(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.phenny = MagicMock()
|
||||
|
|
|
@ -3,14 +3,11 @@ test_short.py - tests for the vtluug url shortener module
|
|||
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
|
||||
"""
|
||||
|
||||
# add current working directory to path
|
||||
import sys
|
||||
sys.path.append('.')
|
||||
|
||||
import unittest
|
||||
from mock import MagicMock, Mock
|
||||
from modules.short import short
|
||||
|
||||
|
||||
class TestShort(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.phenny = MagicMock()
|
||||
|
|
|
@ -3,14 +3,11 @@ test_slogan.py - tests for the slogan module
|
|||
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
|
||||
"""
|
||||
|
||||
# add current working directory to path
|
||||
import sys
|
||||
sys.path.append('.')
|
||||
|
||||
import unittest
|
||||
from mock import MagicMock, Mock
|
||||
from modules.slogan import sloganize, slogan
|
||||
|
||||
|
||||
class TestSlogan(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.phenny = MagicMock()
|
||||
|
|
|
@ -3,15 +3,12 @@ test_tfw.py - tests for the fucking weather module
|
|||
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
|
||||
"""
|
||||
|
||||
# add current working directory to path
|
||||
import sys
|
||||
sys.path.append('.')
|
||||
|
||||
import re
|
||||
import unittest
|
||||
from mock import MagicMock, Mock
|
||||
from modules.tfw import tfw
|
||||
|
||||
|
||||
class TestTfw(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.phenny = MagicMock()
|
||||
|
|
|
@ -3,15 +3,12 @@ test_urbandict.py - tests for the urban dictionary module
|
|||
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
|
||||
"""
|
||||
|
||||
# add current working directory to path
|
||||
import sys
|
||||
sys.path.append('.')
|
||||
|
||||
import re
|
||||
import unittest
|
||||
from mock import MagicMock, Mock
|
||||
from modules.urbandict import urbandict
|
||||
|
||||
|
||||
class TestUrbandict(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.phenny = MagicMock()
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
# add current working directory to path
|
||||
import sys
|
||||
sys.path.append('.')
|
|
@ -2,13 +2,8 @@
|
|||
Tests for phenny's bot.py
|
||||
"""
|
||||
|
||||
# add current working directory to path
|
||||
import sys
|
||||
sys.path.append('.')
|
||||
|
||||
import unittest
|
||||
from mock import call, patch, Mock
|
||||
|
||||
import bot
|
||||
|
||||
|
||||
|
|
|
@ -2,13 +2,8 @@
|
|||
Tests for phenny's irc.py
|
||||
"""
|
||||
|
||||
# add current working directory to path
|
||||
import sys
|
||||
sys.path.append('.')
|
||||
|
||||
import unittest
|
||||
from mock import call, patch, Mock
|
||||
|
||||
import irc
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue