Esempio n. 1
0
def test_none_ascii():
    ResultType(ascii_symbols=None)
Esempio n. 2
0
def test_ascii_symbol():
    ascii_symbols = ["foo"]
    result_type = ResultType(ascii_symbols=ascii_symbols)
    assert result_type.ascii_symbols == ascii_symbols
Esempio n. 3
0
def result_type():
    return ResultType(ascii_symbols=["foo"])