(self)
| 38 | assert decoded == [] |
| 39 | |
| 40 | def test_blob_size(self): |
| 41 | vec = [1.0, 2.0, 3.0] |
| 42 | blob = _encode_vector(vec) |
| 43 | assert len(blob) == 12 # 3 floats * 4 bytes each |
| 44 | |
| 45 | |
| 46 | class TestCosineSimilarity: |
nothing calls this directly
no test coverage detected