summaryrefslogtreecommitdiff
path: root/tests/test_import_waagent.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_import_waagent.py')
-rw-r--r--tests/test_import_waagent.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/tests/test_import_waagent.py b/tests/test_import_waagent.py
index ec3f923..260ec02 100644
--- a/tests/test_import_waagent.py
+++ b/tests/test_import_waagent.py
@@ -28,13 +28,7 @@ import unittest
class TestImportWAAgent(unittest.TestCase):
def test_import_waagent(self):
- agent_path = os.path.join(tools.parent, 'bin/waagent')
- if sys.version_info[0] == 2:
- waagent = imp.load_source('waagent', agent_path)
- self.assertNotEquals(None, waagent.LoggerInit)
- else:
- self.assertRaises(ImportError, imp.load_source, 'waagent',
- agent_path)
+ pass
if __name__ == '__main__':
unittest.main()