mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-01 05:52:11 +00:00
support/testing: add python-bitstring tests
Add a simple test case to check the basic usage by checking the corresponding representation of a 12-bit decimal number in hex, binary and integer. Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
66f99555ed
commit
38557a8c63
6
support/testing/tests/package/sample_python_bitstring.py
Normal file
6
support/testing/tests/package/sample_python_bitstring.py
Normal file
@@ -0,0 +1,6 @@
|
||||
import bitstring
|
||||
|
||||
value = bitstring.BitArray("uint:12=42")
|
||||
assert(value.hex == "02a")
|
||||
assert(value.bin == "000000101010")
|
||||
assert(value.uint == 42)
|
||||
Reference in New Issue
Block a user