5
# Make sure we're working in the source tree.
6
sys.path.insert(0, '.')
7
#os.environ['UBIQUITY_PLUGIN_PATH'] = './ubiquity/components'
8
from ubiquity.frontend import gtk_ui
10
class FrontendTests(unittest.TestCase):
12
self.frontend = gtk_ui.Wizard('ubuntu')
14
self.frontend.live_installer.hide()
16
def testReturnToPartitioner(self):
17
self.frontend.installing = True
18
self.frontend.return_to_partitioning()
22
self.frontend.quit_main_loop()
24
if __name__ == '__main__':