Make tests for browser.http run again.

This commit is contained in:
Florian Bruhin 2015-02-05 06:59:00 +01:00
parent 7d01abacaa
commit 0957d5df8e
4 changed files with 25 additions and 5 deletions

View File

@ -0,0 +1,20 @@
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
# Copyright 2014-2015 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
#
# This file is part of qutebrowser.
#
# qutebrowser is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# qutebrowser is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
"""Tests for the qutebrowser.browser package."""

View File

@ -17,4 +17,4 @@
# You should have received a copy of the GNU General Public License
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
"""Tests for the qutebrowser.utils.http module."""
"""Tests for the qutebrowser.browser.http module."""

View File

@ -17,13 +17,13 @@
# You should have received a copy of the GNU General Public License
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
"""Tests for qutebrowser.utils.http.parse_content_disposition."""
"""Tests for qutebrowser.browser.http.parse_content_disposition."""
import os
import unittest
import logging
from qutebrowser.utils import http
from qutebrowser.browser import http
from qutebrowser.test import stubs

View File

@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
"""Tests for qutebrowser.utils.http.
"""Tests for qutebrowser.browser.http.
Note that tests for parse_content_disposition are in their own
test_content_disposition.py file.
@ -25,7 +25,7 @@ test_content_disposition.py file.
import unittest
from qutebrowser.utils import http
from qutebrowser.browser import http
from qutebrowser.test import stubs