A snake-cased drop in for unittest.TestCase
Project description
For historical reasons, Python's built-in unittest module is not PEP-8
compliant. It uses camel case method names instead of snake case names. This
is not going to change in Python 3. (1,
2,
3)
This could lead to stylistic inconsistencies, especially if one wants to write custom assertion methods and runs a pep-8 checker over their test code.
To address this stylistic itch, uneedtest offers a simple drop-in
TestCase class which provides snake cased aliases to all the camel cased
methods in unittest.TestCase.
Install
pip install uneedtest
Use
You can use uneedtest.TestCase in the same way you used to use
unittest.TestCase before. It accepts calls to the corresponding snake case
methods. The camel case methods are still working, allowing for gradually fading
out their use in your test code base:
from uneedtest import TestCase
class TestMe(TestCase):
def test_something(self):
self.assert_equal(1, 1)
self.assertEqual(1, 1)
Test
You can run the tests using poetry:
poetry run pytest
If you don't want to use poetry, you can run the tests with pytest or
unittest directly:
pytest tests/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file uneedtest-0.1.0.tar.gz.
File metadata
- Download URL: uneedtest-0.1.0.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.10.13 Linux/5.15.0-91-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1df30f4bd4a669c0bfcdf31bfb41d52fd465ab24a4e8a24aa36e08855d099036
|
|
| MD5 |
319fdd4b604bedb116dff0acbc81c6e4
|
|
| BLAKE2b-256 |
108046ed1680c0d14de439287ad5b027e4a5b4c12214dde16bb2478493c6a236
|
File details
Details for the file uneedtest-0.1.0-py3-none-any.whl.
File metadata
- Download URL: uneedtest-0.1.0-py3-none-any.whl
- Upload date:
- Size: 3.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.10.13 Linux/5.15.0-91-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
901906a06a1dacf1873a7d598a909e3c8a53fdd3a054e5c7a7c0b085dddbc71b
|
|
| MD5 |
b4ee7239af51fbc0e0aa6c47e01745fb
|
|
| BLAKE2b-256 |
e8066f1b4a4cc08fcfe1379a518b19af27947651adb000e30569fe27279854da
|