diff options
author | Eddy Pedroni <eddy@0xf7.com> | 2021-12-21 18:39:49 +0100 |
---|---|---|
committer | Eddy Pedroni <eddy@0xf7.com> | 2021-12-21 18:39:49 +0100 |
commit | 9ee7ee992d468b4f354ac16c34747e0c31d7b656 (patch) | |
tree | 8c9f46bb8478fd9a6a3f9b194921fb9b1e0a3592 /abcontroller_unittest.py | |
parent | 6eb42e6d4468ad161281125c77a41063f93380e1 (diff) |
Minor fixes to tests
Diffstat (limited to 'abcontroller_unittest.py')
-rw-r--r-- | abcontroller_unittest.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/abcontroller_unittest.py b/abcontroller_unittest.py index 42eaabc..ea377b7 100644 --- a/abcontroller_unittest.py +++ b/abcontroller_unittest.py @@ -137,3 +137,7 @@ def test_addLimitsToCurrentSongButDoNotSetCurrentLimits(): checkLimits(uut, abLimits.a, abLimits.b) +def test_getLimitsOfInexistentSong(): + song = "/path/to/song" + uut = ABController() + assert uut.getLimits(song) == None |