Beispiel #1
0
def wsv_default():
    w = wordsiv.WordSiv()
    w.add_source_module(wctest)
    w.add_source_module(mkvtest)
    return w
Beispiel #2
0
def wsv_no_source():
    w = wordsiv.WordSiv()
    return w
Beispiel #3
0
def wsv_font_file_wc():
    w = wordsiv.WordSiv(font_file=HERE / "data/noto-sans-subset.ttf")
    w.add_source_module(wctest)
    return w
Beispiel #4
0
def wsv_limit_glyphs_wc():
    w = wordsiv.WordSiv(limit_glyphs=LIMITED_CHARS)
    w.add_source_module(wctest)
    return w
Beispiel #5
0
def wsv_wc():
    w = wordsiv.WordSiv()
    w.add_source_module(wctest)
    return w
Beispiel #6
0
def wsv_mk():
    w = wordsiv.WordSiv()
    w.add_source_module(mkvtest)
    return w