diff options
author | szszszsz <szszszsz@users.noreply.github.com> | 2016-09-08 16:49:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-08 16:49:52 +0200 |
commit | e164c5f3dc74fb2335b1fc573ce446cdd76a07dc (patch) | |
tree | e11e0a7458d7aae9e484722550c60292b3a6d9ba /unittest/test_bindings.py | |
parent | 7dbbe7fb4c50c62b0e1818c5356aafb97a00ac0f (diff) | |
parent | bcbb54f49fad3f4bb3e8e6aca081d9d300e74d2b (diff) | |
download | libnitrokey-e164c5f3dc74fb2335b1fc573ce446cdd76a07dc.tar.gz libnitrokey-e164c5f3dc74fb2335b1fc573ce446cdd76a07dc.tar.bz2 |
Merge pull request #34 from Nitrokey/issue_33
Function for getting device's serial number in hex. Fixes #33
Diffstat (limited to 'unittest/test_bindings.py')
-rw-r--r-- | unittest/test_bindings.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/unittest/test_bindings.py b/unittest/test_bindings.py index 2ffa046..eeda247 100644 --- a/unittest/test_bindings.py +++ b/unittest/test_bindings.py @@ -496,3 +496,10 @@ def test_get_status(C): status = C.NK_status() s = gs(status) assert len(s) > 0 + + +def test_get_serial_number(C): + sn = C.NK_device_serial_number() + sn = gs(sn) + assert len(sn) > 0 + print(('Serial number of the device: ', sn)) |