Ejemplo n.º 1
0
class GMPSyncConfigCommandTestCase(unittest.TestCase):
    def setUp(self):
        self.gmp = GmpCommandFactory()

    def tearDown(self):
        pass

    def test_sync_config(self):
        cmd = self.gmp.sync_config_command()

        self.assertEqual('<sync_config/>', cmd)
class GMPDescribeAuthCommandTestCase(unittest.TestCase):
    def setUp(self):
        self.gmp = GmpCommandFactory()

    def tearDown(self):
        pass

    def test_describe_auth(self):
        cmd = self.gmp.describe_auth_command()

        self.assertEqual('<describe_auth/>', cmd)
Ejemplo n.º 3
0
class GMPEmptyTrashcanCommandTestCase(unittest.TestCase):
    def setUp(self):
        self.gmp = GmpCommandFactory()

    def tearDown(self):
        pass

    def test_empty_trashcan(self):
        cmd = self.gmp.empty_trashcan_command()

        self.assertEqual('<empty_trashcan/>', cmd)
 def setUp(self):
     self.gmp = GmpCommandFactory()