Ejemplo n.º 1
0
def test_example_nosubset():
    testObject = randomdef.randomDefinition('test',
                                            showexample=True,
                                            subset=False)
    assert testObject.inword == 'test'
    assert len(testObject.word_list) > 1000
    testObject.get_synset()
Ejemplo n.º 2
0
def test_noexample_subset():
    testObject = randomdef.randomDefinition('test',
                                            showexample=False,
                                            subset=True)
    assert testObject.inword == 'test'
    assert len(testObject.word_list) == 1000
    testObject.get_synset()
    assert testObject.example == None
Ejemplo n.º 3
0
def test_no_examples(capsys):
    testObject = randomDefinition('test', showexample=True)
    testObject.get_synset()
    testObject.example = "NULLNULLNULL"
    testObject.print_output()
    out, err = capsys.readouterr()
    assert "No examples available" in out
    assert err == ''
Ejemplo n.º 4
0
def test_noexample_nosubset(capsys):
    testObject = randomDefinition('test', showexample=False, subset=False)
    testObject.get_synset()
    testObject.print_output()
    out, err = capsys.readouterr()
    defstring = "The definition of {0} is:".format(testObject.inword)
    assert defstring in out
    assert testObject.example is None
    assert err == ''
Ejemplo n.º 5
0
def test_example_subset(capsys):
    testObject = randomDefinition('test', showexample=True, subset=True)
    testObject.get_synset()
    testObject.print_output()
    out, err = capsys.readouterr()
    defstring = "The definition of {0} is:".format(testObject.inword)
    assert defstring in out
    assert "Example: " in out or "No examples available" in out
    assert err == ''
Ejemplo n.º 6
0
def test_random_word_exit():
    testObject = randomDefinition('test')
    testObject.word_list = []
    with pytest.raises(SystemExit):
        testObject.random_word()