Example #1
0
def test_cannot_install_into_morpher_twice():
    m = Morpher(0, 1)
    m.install(s.integers())
    with pytest.raises(InvalidArgument):
        m.install(s.integers())
Example #2
0
def test_cannot_install_into_morpher_twice():
    m = Morpher(0, 1)
    m.install(s.integers())
    with pytest.raises(InvalidArgument):
        m.install(s.integers())