The tests for the matrix module are written at /test/testmatrix.py (check this link). At the time of writing this, only one test (test_transpose_matrix) passes, while all the others are set to fail, by using self.assertEqual(0, 1).
This issue will be closed when all the tests are written and the functions at the matrix module pass all the tests.
The tests for the
matrix
module are written at/test/testmatrix.py
(check this link). At the time of writing this, only one test (test_transpose_matrix
) passes, while all the others are set to fail, by usingself.assertEqual(0, 1)
.This issue will be closed when all the tests are written and the functions at the matrix module pass all the tests.