def test_get_description_via_table(self): table = Table(self.client, table_name) ts_obj = table.describe() self.assertIsNotNone(ts_obj) self.validate_len(ts_obj, (5, 7, 8))
def test_get_description_via_table(self): table = Table(self.client, 'GeoCheckin') ts_obj = table.describe() self.assertIsNotNone(ts_obj) self.assertEqual(len(ts_obj.columns), 5) self.assertEqual(len(ts_obj.rows), 5)