Exemplo n.º 1
0
Arquivo: tests.py Projeto: fralud/djpj
def test_pjax_template_auto():
    view = pjax_template()(base_view)
    resp = view(pjax_request, 'test_template.html')
    assert resp.template_name == ('test_template-pjax=secondary.html',
                                  'test_template.html')
Exemplo n.º 2
0
Arquivo: tests.py Projeto: fralud/djpj
def test_pjax_template_none_arg():
    pjax_template(None)
Exemplo n.º 3
0
Arquivo: tests.py Projeto: fralud/djpj
def test_pjax_template_no_result():
    _ = pjax_template(lambda *a, **kw: None)(base_view)(pjax_request,
                                                        test_template)
Exemplo n.º 4
0
def test_pjax_static_template():
    view = pjax_template('static_template.html')(base_view)
    resp = view(pjax_request, test_template)
    print(resp.template_name)
    assert resp.template_name == "static_template.html"
Exemplo n.º 5
0
Arquivo: tests.py Projeto: fralud/djpj
def test_pjax_static_template():
    view = pjax_template('static_template.html')(base_view)
    resp = view(pjax_request, test_template)
    print(resp.template_name)
    assert resp.template_name == "static_template.html"
Exemplo n.º 6
0
def test_pjax_template_no_result():
    with pytest.raises(ValueError):
        _ = pjax_template(lambda *a, **kw: None)(base_view)(pjax_request, test_template)
Exemplo n.º 7
0
def test_pjax_template_auto():
    view = pjax_template()(base_view)
    resp = view(pjax_request, 'test_template.html')
    assert resp.template_name == ('test_template-pjax=secondary.html', 'test_template.html')
Exemplo n.º 8
0
def test_pjax_template_none_arg():
    with pytest.raises(ValueError):
        pjax_template(None)
Exemplo n.º 9
0
Arquivo: tests.py Projeto: aibon/djpj
def test_pjax_template_no_result():
    _ = pjax_template(lambda *a, **kw: None)(base_view)(pjax_request, test_template)
Exemplo n.º 10
0
Arquivo: tests.py Projeto: aibon/djpj
def test_pjax_template_none_arg():
    pjax_template(None)
Exemplo n.º 11
0
def test_pjax_template_no_result():
    with pytest.raises(ValueError):
        _ = pjax_template(lambda *a, **kw: None)(base_view)(pjax_request,
                                                            test_template)
Exemplo n.º 12
0
def test_pjax_template_none_arg():
    with pytest.raises(ValueError):
        pjax_template(None)