refactor code structure. tests passing.

This commit is contained in:
2020-10-28 03:20:38 +00:00
parent 6e483cbd74
commit e94a824fa0
6 changed files with 17 additions and 6 deletions

View File

@@ -1,10 +1,10 @@
init:
pip install -r requirements.txt
pip3 install --user -r requirements.txt
test:
python -m unittest -v tests/test_bit.py
python -m unittest -v tests/test_bits.py
python -m unittest -v tests/test_bytes.py
python3 -m unittest -v tests/test_bit.py
python3 -m unittest -v tests/test_bits.py
python3 -m unittest -v tests/test_bytes.py
.PHONY: init test