]> gitweb.michael.orlitzky.com - octave.git/blob - tests/odd_tests.m
Move even/odd into the misc subdirectory.
[octave.git] / tests / odd_tests.m
1 unit_test_equals("1 is odd", ...
2 true, ...
3 odd(1));
4
5 unit_test_equals("2 is not odd", ...
6 false, ...
7 odd(2));