* Planetlab tests
[nepi.git] / test / testbeds / planetlab / execute.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 import getpass
5 from nepi.util.constants import STATUS_FINISHED
6 from nepi.testbeds import netns
7 import os
8 import shutil
9 import tempfile
10 import test_util
11 import time
12 import unittest
13
14 class NetnsExecuteTestCase(unittest.TestCase):
15     def setUp(self):
16         self.root_dir = tempfile.mkdtemp()
17         
18     def tearDown(self):
19         shutil.rmtree(self.root_dir)
20
21 if __name__ == '__main__':
22     unittest.main()
23