sigmf-python
sigmf-python copied to clipboard
Create test for checksum code
Missing a test for the checksum. Verify ok and verify that bad checksum raises err.
note to self about chaining exceptions; may use in same PR:
try:
do_something()
except KeyError as err:
msg = 'something happened'
log.error(msg)
raise KeyError(msg) from err