Tests that passing an inconsistent number of distance and duration matrices raises an error.
(ok_small)
| 802 | |
| 803 | |
| 804 | def test_raises_inconsistent_profiles(ok_small): |
| 805 | """ |
| 806 | Tests that passing an inconsistent number of distance and duration matrices |
| 807 | raises an error. |
| 808 | """ |
| 809 | with assert_raises(ValueError): |
| 810 | ok_small.replace(distance_matrices=ok_small.distance_matrices() * 2) |
| 811 | |
| 812 | |
| 813 | def test_client_group_attribute_access(): |