Exemplo n.º 1
0
    def test_equality(self):
        a = posix.PosixHostPlatform('linux', 'linux', 'x86_64')
        b = posix.PosixHostPlatform('linux', 'linux', 'x86_64')
        c = posix.PosixHostPlatform('linux', 'android', 'arm')

        self.assertTrue(a == b)
        self.assertFalse(a != b)
        self.assertFalse(a == c)
        self.assertTrue(a != c)
Exemplo n.º 2
0
 def test_json(self):
     plat = posix.PosixHostPlatform('linux', 'linux', 'x86_64')
     json = plat.to_json()
     self.assertEqual(host.from_json(json), plat)