No project description provided
Project description
pytest-builtin-types
pytest-builtin-types gives you prebuilt builtin data types for testing your own projects.
Key Features:
- Basic Types: Has a selection of fixtures with pre-built types such as
float
,int
,str
, etc. - Basic Containers: Has a selection of fixtures with pre-built containers such as
dict
,list
,tuple
etc. - Great Developer Experience: Being fully typed makes it great for editor support.
Installation
pip install pytest-builtin-types
Example
Basic Type
def test_float_type(float_1, float_2):
print(float_1) # 1.1
print(float_2) # 2.1
Basic Types
def test_basic_types(basic_types_1, basic_types_2):
print(basic_types_1) # {<class 'str'>: 'string1', <class 'int'>: 1, <class 'float'>: 1.1}
print(basic_types_2) # {<class 'str'>: 'string2', <class 'int'>: 2, <class 'float'>: 1.2}
Basic Containers
def test_container_types(basic_containers_1):
print(basic_containers_1)
# {<class 'list'>: ['string1', 1, 1.1], <class 'tuple'>: ('string1', 1, 1.1), <class 'set'>: {1, 'string1', 1.1},
# <class 'dict'>: {<class 'str'>: 'string1', <class 'int'>: 1, <class 'float'>: 1.1}}
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
File details
Details for the file pytest-builtin-types-1.2.tar.gz
.
File metadata
- Download URL: pytest-builtin-types-1.2.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6affd9ac613ca188e4f845827073546f692f1b3e1a704b0e25f72dd4fe896339 |
|
MD5 | 2b04bdce790cc72a114722cfa406efa4 |
|
BLAKE2b-256 | 981ad810b27ea61468704fe484d57e01ae11e395bd7c2315214afa53b0caecc3 |
File details
Details for the file pytest_builtin_types-1.2-py3-none-any.whl
.
File metadata
- Download URL: pytest_builtin_types-1.2-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 663d7978029e37661a1a9759d6baaf24e506f8a8487e7926bfd5db04436174e8 |
|
MD5 | e5d9f61b1439377c2de8e83317b626ca |
|
BLAKE2b-256 | b8b4851c19bee8d259ab943b6593db340ac2d7962177ef3a1e1f56b43c4345eb |