From 92fd11e4cf60eab063d74951f50c5ff0131b7377 Mon Sep 17 00:00:00 2001 From: Laurent Bachelier Date: Sun, 19 Oct 2014 00:26:38 +0200 Subject: [PATCH] browser tests: More Pythonic names --- setup.cfg | 4 ++-- weboob/browser/tests/__init__.py | 0 weboob/browser/{tests_class_Form.py => tests/form.py} | 0 weboob/browser/{tests_class_URL.py => tests/url.py} | 0 4 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 weboob/browser/tests/__init__.py rename weboob/browser/{tests_class_Form.py => tests/form.py} (100%) rename weboob/browser/{tests_class_URL.py => tests/url.py} (100%) diff --git a/setup.cfg b/setup.cfg index 44866f0b98..a5fcc4f905 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,8 +14,8 @@ tests = weboob.tools.capabilities.bank.transactions, weboob.browser.browsers, weboob.browser.pages, weboob.browser.filters.standard, - weboob.browser.tests_class_URL, - weboob.browser.tests_class_Form + weboob.browser.tests.form, + weboob.browser.tests.url [isort] known_first_party=weboob diff --git a/weboob/browser/tests/__init__.py b/weboob/browser/tests/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/weboob/browser/tests_class_Form.py b/weboob/browser/tests/form.py similarity index 100% rename from weboob/browser/tests_class_Form.py rename to weboob/browser/tests/form.py diff --git a/weboob/browser/tests_class_URL.py b/weboob/browser/tests/url.py similarity index 100% rename from weboob/browser/tests_class_URL.py rename to weboob/browser/tests/url.py -- GitLab