summaryrefslogtreecommitdiff
path: root/nose/importer.py
diff options
context:
space:
mode:
authorJason Pellerin <jpellerin@gmail.com>2007-03-11 03:46:41 +0000
committerJason Pellerin <jpellerin@gmail.com>2007-03-11 03:46:41 +0000
commit001c3f94a1f3ee8c1a6039111bc23e526681ce69 (patch)
treebbfde73422af4cb4692183029750bc01b2c257d5 /nose/importer.py
parentf004df0a08faf8c8ccd0d9e586088d6f1c20066b (diff)
downloadnose-001c3f94a1f3ee8c1a6039111bc23e526681ce69.tar.gz
Started work on loader functional tests, revising importer interface
Diffstat (limited to 'nose/importer.py')
-rw-r--r--nose/importer.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/nose/importer.py b/nose/importer.py
index 1dd6b06..78b5b7e 100644
--- a/nose/importer.py
+++ b/nose/importer.py
@@ -30,6 +30,10 @@ class Importer(object):
self._imp = imputil._FilesystemImporter()
self._imp.add_suffix('.py', imputil.py_suffix_importer)
self._modules = {}
+
+ def import_from_path(self, path, fqname):
+ # FIXME import the fqname module from the given path
+ raise NotImplementedError("import_from_path not implemented")
def import_from_dir(self, dir, fqname):
dir = os.path.abspath(dir)