awips2/pythonPackages/nose/functional_tests/test_selector.py
2017-04-21 18:33:55 -06:00

17 lines
502 B
Python

import os
import unittest
from nose.selector import Selector, TestAddress
support = os.path.abspath(os.path.join(os.path.dirname(__file__), 'support'))
class TestTestAddress(unittest.TestCase):
def test_module_filename(self):
wd = os.path.join(support, 'package2')
addr = TestAddress('test_pak.test_mod', workingDir=wd)
self.assertEqual(addr.filename,
os.path.join(wd, 'test_pak', 'test_mod.py'))
if __name__ == '__main__':
unittest.main()