]> gitweb.michael.orlitzky.com - octave.git/blobdiff - tests/odd_tests.m
Move all of the tests into a subdirectory.
[octave.git] / tests / odd_tests.m
diff --git a/tests/odd_tests.m b/tests/odd_tests.m
new file mode 100644 (file)
index 0000000..d2ab7ba
--- /dev/null
@@ -0,0 +1,7 @@
+unit_test_equals("1 is odd", ...
+                true, ...
+                odd(1));
+
+unit_test_equals("2 is not odd", ...
+                false, ...
+                odd(2));