Exemplo n.º 1
0
def test_is_string_seq_false():
    assert not is_string_seq([42.0])
Exemplo n.º 2
0
def test_is_string_seq_true(inp):
    assert is_string_seq(inp)
Exemplo n.º 3
0
def test_is_string_seq_false():
    assert not is_string_seq([42.0])
Exemplo n.º 4
0
def test_is_string_seq():
    assert is_string_seq('42.0')
    assert is_string_seq(['42.0'])
    assert not is_string_seq([42.0])
Exemplo n.º 5
0
def test_is_string_seq_true(inp):
    assert is_string_seq(inp)