diff --git a/tests/test_project_loader.py b/tests/test_project_loader.py index cd9ba09..956325d 100644 --- a/tests/test_project_loader.py +++ b/tests/test_project_loader.py @@ -483,6 +483,14 @@ class TestBinaryIndexDecoder: from project_loader import BinaryIndexDecoder assert BinaryIndexDecoder().decode(4) == (False, False, True) + def test_index_5(self): + from project_loader import BinaryIndexDecoder + assert BinaryIndexDecoder().decode(5) == (True, False, True) + + def test_index_6(self): + from project_loader import BinaryIndexDecoder + assert BinaryIndexDecoder().decode(6) == (False, True, True) + def test_index_7(self): from project_loader import BinaryIndexDecoder assert BinaryIndexDecoder().decode(7) == (True, True, True)