def test_serialize_deserialize():
    """
    test to_dict function for Grid Current object
    create a new grid_current object and make sure it has same properties
    """

    c_grid = GridCurrentMover(curr_file, topology_file)
    serial = c_grid.serialize()
    c2 = GridCurrentMover.deserialize(serial)
    assert c_grid == c2
def test_serialize_deserialize():
    """
    test to_dict function for Grid Current object
    create a new grid_current object and make sure it has same properties
    """

    c_grid = GridCurrentMover(curr_file, topology_file)
    serial = c_grid.serialize()
    c2 = GridCurrentMover.deserialize(serial)
    assert c_grid == c2
Пример #3
0
def test_serialize_deserialize():
    """
    test to_dict function for Grid Current object
    create a new grid_current object and make sure it has same properties
    """

    c_grid = GridCurrentMover(curr_file, topology_file)
    serial = c_grid.serialize('webapi')
    dict_ = GridCurrentMover.deserialize(serial)
    c2 = GridCurrentMover.new_from_dict(dict_)
    assert c_grid == c2

    c_grid.update_from_dict(dict_)  # tests no failures
Пример #4
0
def test_serialize_deserialize():
    """
    test to_dict function for Grid Current object
    create a new grid_current object and make sure it has same properties
    """

    c_grid = GridCurrentMover(curr_file, topology_file)
    serial = c_grid.serialize('webapi')
    dict_ = GridCurrentMover.deserialize(serial)
    c2 = GridCurrentMover.new_from_dict(dict_)
    assert c_grid == c2

    c_grid.update_from_dict(dict_)  # tests no failures