def test_to_json(): q = ThreeDQubit(1.3, 1, 1) d = q._json_dict_() assert d == {'x': 1.3, 'y': 1, 'z': 1} q = TwoDQubit(1.3, 1) d = q._json_dict_() assert d == {'x': 1.3, 'y': 1}
def test_to_json(): q = ThreeDQubit(1.3, 1, 1) d = q._json_dict_() assert d == { 'cirq_type': 'ThreeDQubit', 'x': 1.3, 'y': 1, 'z': 1, } q = TwoDQubit(1.3, 1) d = q._json_dict_() assert d == { 'cirq_type': 'TwoDQubit', 'x': 1.3, 'y': 1, }