def test_shards(self): self.assertEqual(set(CellShard.shards().keys()), set(['gsm', 'wcdma', 'lte'])) self.assertEqual(set(CellShard.shards().values()), set([CellShardGsm, CellShardWcdma, CellShardLte]))
def test_shards(self): assert set(CellShard.shards().keys()) == set(["gsm", "wcdma", "lte"]) assert set(CellShard.shards().values()) == set( [CellShardGsm, CellShardWcdma, CellShardLte])
def test_shards(self): assert (set(CellShard.shards().keys()) == set(['gsm', 'wcdma', 'lte'])) assert (set(CellShard.shards().values()) == set([CellShardGsm, CellShardWcdma, CellShardLte]))
def test_shards(self): assert (set(CellShard.shards().keys()) == set(['gsm', 'wcdma', 'lte'])) assert (set(CellShard.shards().values()) == set( [CellShardGsm, CellShardWcdma, CellShardLte]))