From 820cb426aaaed4768a115b720faf0d46bfb5734f Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Sat, 4 Apr 2026 00:04:15 +0200 Subject: [PATCH] test: add missing index 5 and 6 cases for BinaryIndexDecoder Co-Authored-By: Claude Sonnet 4.6 --- tests/test_project_loader.py | 8 ++++++++ 1 file changed, 8 insertions(+) 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)