コード例 #1
0
ファイル: JarResourceTest.py プロジェクト: yoda-vid/jinn
    def setUp(self):

        self.fsHelp = FileSystemHelper()
        #save a copy of the original options file
        self.old_options = "manifest=\"manifests/import_manifest.json\"\n# TODO: Get rid of this\nmanifest_is_url = False\ninterface = \"cmd\"\nversion = \"DEV\""

        pass
コード例 #2
0
ファイル: Linux64InstallTest.py プロジェクト: yoda-vid/jinn
    def testInstallLinux64(self):
        self.assertEquals(OperatingSystem.LIN, self.j.getOperatingSystem(),
                          "operating system did not detect as Linux")
        self.assertEquals(Architecture.x64, self.j.getArchitecture(),
                          "architecture is not detected as x64")

        fsHelp = FileSystemHelper()
        os.system("python ../Jinn.py -install")

        #check for the existence of files
        #fsHelp.exists()
        pass