Ejemplo n.º 1
0
def test_block_from_string():
    assert Block.from_string('1,1') == Block(1, 1)
    with pytest.raises(ValueError):
        Block.from_string('foo')
    with pytest.raises(ValueError):
        Block.from_string('1.0,2.0')
Ejemplo n.º 2
0
def test_block_from_string():
    assert Block.from_string('1,1') == Block(1, 1)
    with pytest.raises(ValueError):
        Block.from_string('foo')
    with pytest.raises(ValueError):
        Block.from_string('1.0,2.0')