Remove the test class from test_jinja.py

This commit is contained in:
Raphael Pierzina 2015-04-09 00:38:57 +02:00
parent d91400c3be
commit c3e615dfa3

View File

@ -32,34 +32,31 @@ def _read_file(path):
raise ValueError("Invalid path {}!".format(path)) raise ValueError("Invalid path {}!".format(path))
class JinjaTests(object): def test_simple_template(monkeypatch):
"""Test with a simple template."""
monkeypatch.setattr(
'qutebrowser.utils.jinja.utils.read_file',
_read_file
)
template = jinja.env.get_template('test.html')
# https://bitbucket.org/logilab/pylint/issue/490/
data = template.render(var='World') # pylint: disable=no-member
assert data == "Hello World"
"""Tests for getting template via jinja."""
def test_simple_template(self, monkeypatch): def test_utf8(monkeypatch):
"""Test with a simple template.""" """Test rendering with an UTF8 template.
monkeypatch.setattr(
'qutebrowser.utils.jinja.utils.read_file',
_read_file
)
template = jinja.env.get_template('test.html')
# https://bitbucket.org/logilab/pylint/issue/490/
data = template.render(var='World') # pylint: disable=no-member
assert data == "Hello World"
def test_utf8(self, monkeypatch): This was an attempt to get a failing test case for #127 but it seems
"""Test rendering with an UTF8 template. the issue is elsewhere.
This was an attempt to get a failing test case for #127 but it seems https://github.com/The-Compiler/qutebrowser/issues/127
the issue is elsewhere. """
monkeypatch.setattr(
https://github.com/The-Compiler/qutebrowser/issues/127 'qutebrowser.utils.jinja.utils.read_file',
""" _read_file
monkeypatch.setattr( )
'qutebrowser.utils.jinja.utils.read_file', template = jinja.env.get_template('test.html')
_read_file # https://bitbucket.org/logilab/pylint/issue/490/
) data = template.render(var='\u2603') # pylint: disable=no-member
template = jinja.env.get_template('test.html') assert data == "Hello \u2603"
# https://bitbucket.org/logilab/pylint/issue/490/
data = template.render(var='\u2603') # pylint: disable=no-member
assert data == "Hello \u2603"