コード例 #1
0
def test_future_perfect_indicitive_usted_er():
    expected = "habrá bebido"
    assert Conjugator().conjugate('beber', 'future_perfect', 'indicitive',
                                  'usted') == expected
コード例 #2
0
def test_perfect_conditional_nosotros_ir():
    expected = "habríamos vivido"
    assert Conjugator().conjugate('vivir','perfect','conditional','nosotros') == expected
コード例 #3
0
def test_perfect_conditional_ustedes_ir():
    expected = "habrían vivido"
    assert Conjugator().conjugate('vivir','perfect','conditional','ustedes') == expected
コード例 #4
0
def test_perfect_conditional_vosotros_ar():
    expected = "habríais hablado"
    assert Conjugator().conjugate('hablar','perfect','conditional','vosotros') == expected
コード例 #5
0
def test_perfect_conditional_tu_ir():
    expected = "habrías vivido"
    assert Conjugator().conjugate('vivir','perfect','conditional','tu') == expected
def test_present_perfect_subjunctive_nosotros_ir():
    expected = "hayamos vivido"
    assert Conjugator().conjugate('vivir', 'present_perfect', 'subjunctive',
                                  'nosotros') == expected
def test_present_perfect_subjunctive_yo_ar():
    expected = "haya hablado"
    assert Conjugator().conjugate('hablar', 'present_perfect', 'subjunctive',
                                  'yo') == expected
def test_simple_conditional_conditional_ustedes_ar():
    expected = "hablarían"
    assert Conjugator().conjugate('hablar','simple_conditional','conditional','ustedes') == expected
def test_simple_conditional_conditional_tu_ir():
    expected = "vivirías"
    assert Conjugator().conjugate('vivir','simple_conditional','conditional','tu') == expected
コード例 #10
0
def test_future_perfect_indicitive_ustedes_ir():
    expected = "habrán vivido"
    assert Conjugator().conjugate('vivir', 'future_perfect', 'indicitive',
                                  'ustedes') == expected
def test_simple_conditional_conditional_vosotros_ar():
    expected = "hablaríais"
    assert Conjugator().conjugate('hablar','simple_conditional','conditional','vosotros') == expected
コード例 #12
0
def test_future_perfect_indicitive_yo_ar():
    expected = "habré hablado"
    assert Conjugator().conjugate('hablar', 'future_perfect', 'indicitive',
                                  'yo') == expected
コード例 #13
0
def test_future_perfect_indicitive_vosotros_er():
    expected = "habréis bebido"
    assert Conjugator().conjugate('beber', 'future_perfect', 'indicitive',
                                  'vosotros') == expected
コード例 #14
0
def test_future_perfect_indicitive_nosotros_ir():
    expected = "habremos vivido"
    assert Conjugator().conjugate('vivir', 'future_perfect', 'indicitive',
                                  'nosotros') == expected
def test_present_perfect_subjunctive_tu_ir():
    expected = "hayas vivido"
    assert Conjugator().conjugate('vivir', 'present_perfect', 'subjunctive',
                                  'tu') == expected
def test_simple_conditional_conditional_usted_er():
    expected = "bebería"
    assert Conjugator().conjugate('beber','simple_conditional','conditional','usted') == expected
def test_present_perfect_subjunctive_usted_er():
    expected = "haya bebido"
    assert Conjugator().conjugate('beber', 'present_perfect', 'subjunctive',
                                  'usted') == expected
def test_simple_conditional_conditional_nosotros_ir():
    expected = "viviríamos"
    assert Conjugator().conjugate('vivir','simple_conditional','conditional','nosotros') == expected
def test_present_perfect_subjunctive_vosotros_er():
    expected = "hayáis bebido"
    assert Conjugator().conjugate('beber', 'present_perfect', 'subjunctive',
                                  'vosotros') == expected
def test_simple_conditional_conditional_vosotros_er():
    expected = "beberíais"
    assert Conjugator().conjugate('beber','simple_conditional','conditional','vosotros') == expected
def test_present_perfect_subjunctive_ustedes_ir():
    expected = "hayan vivido"
    assert Conjugator().conjugate('vivir', 'present_perfect', 'subjunctive',
                                  'ustedes') == expected
def test_simple_conditional_conditional_ustedes_ir():
    expected = "vivirían"
    assert Conjugator().conjugate('vivir','simple_conditional','conditional','ustedes') == expected
コード例 #23
0
def test_perfect_conditional_ustedes_ar():
    expected = "habrían hablado"
    assert Conjugator().conjugate('hablar','perfect','conditional','ustedes') == expected
def test_simple_conditional_conditional_yo_ar():
    expected = "hablaría"
    assert Conjugator().conjugate('hablar','simple_conditional','conditional','yo') == expected
コード例 #25
0
def test_perfect_conditional_usted_er():
    expected = "habría bebido"
    assert Conjugator().conjugate('beber','perfect','conditional','usted') == expected
def test_present_perfect_subjunctive_vosotros_ar():
    expected = "hayáis hablado"
    assert Conjugator().conjugate('hablar', 'present_perfect', 'subjunctive',
                                  'vosotros') == expected
コード例 #27
0
def test_perfect_conditional_vosotros_er():
    expected = "habríais bebido"
    assert Conjugator().conjugate('beber','perfect','conditional','vosotros') == expected
def test_present_perfect_subjunctive_ustedes_ar():
    expected = "hayan hablado"
    assert Conjugator().conjugate('hablar', 'present_perfect', 'subjunctive',
                                  'ustedes') == expected
コード例 #29
0
def test_perfect_conditional_yo_ar():
    expected = "habría hablado"
    assert Conjugator().conjugate('hablar','perfect','conditional','yo') == expected
コード例 #30
0
def test_future_perfect_indicitive_tu_ir():
    expected = "habrás vivido"
    assert Conjugator().conjugate('vivir', 'future_perfect', 'indicitive',
                                  'tu') == expected