Skip to content

Commit fcf6b0e

Browse files
committed
Update README.md
1 parent aa36de1 commit fcf6b0e

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

README.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
[![image](https://img.shields.io/pypi/v/unittest-extensions.svg)](https://pypi.python.org/pypi/unittest-extensions)
2+
[![image](https://img.shields.io/pypi/l/unittest-extensions.svg)](https://opensource.org/license/mit/)
3+
[![image](https://img.shields.io/pypi/pyversions/unittest-extensions.svg)](https://pypi.python.org/pypi/unittest-extensions)
4+
[![Actions status](https://github.com/Maxcode123/unittest-extensions/actions/workflows/test-package.yml/badge.svg?branch=main)](https://github.com/Maxcode123/unittest-extensions/actions/workflows/test-package.yml?query=branch%3Amain)
5+
6+
---
7+
8+
**Documentation:** https://maxcode123.github.io/unittest-extensions/
9+
**Source code:** https://github.com/Maxcode123/unittest-extensions
10+
**PyPI:** https://pypi.org/project/unittest-extensions/
11+
12+
---
13+
114
# **unittest-extensions**
215
Extension of Python's standard unittest library
316

@@ -13,10 +26,6 @@ This minimal library aims to simplify behavioural testing with Python's standard
1326
`unittest-extensions` does not have any dependencies, it is solely based on the
1427
Python standard library and mainly inspired by Ruby's [`RSpec`](https://rspec.info/) framework.
1528

16-
# Documentation
17-
This project is documented at:
18-
https://maxcode123.github.io/unittest-extensions/
19-
2029

2130
# Installation
2231
```
@@ -135,7 +144,4 @@ if __name__ == "__main__":
135144

136145
The number of lines is still the same, but the testing code has become clearer:
137146
1. The subject of our assertions in each test case is documented in the `subject` method
138-
2. Each test method contains only information we care about, i.e. the input data (names/surnames) we test and the result of the assertion (true/false).
139-
140-
# License
141-
[MIT License](https://opensource.org/license/mit/)
147+
2. Each test method contains only information we care about, i.e. the input data (names/surnames) we test and the result of the assertion (true/false).

0 commit comments

Comments
 (0)