aboutsummaryrefslogtreecommitdiffstats
path: root/test/testunit/tests_for_parallel/ptest_forth.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/testunit/tests_for_parallel/ptest_forth.rb')
-rw-r--r--test/testunit/tests_for_parallel/ptest_forth.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/testunit/tests_for_parallel/ptest_forth.rb b/test/testunit/tests_for_parallel/ptest_forth.rb
new file mode 100644
index 0000000000..c778a2ecc9
--- /dev/null
+++ b/test/testunit/tests_for_parallel/ptest_forth.rb
@@ -0,0 +1,16 @@
+require 'test/unit'
+
+class TestE < Test::Unit::TestCase
+ def test_not_fail
+ assert_equal(1,1)
+ end
+
+ def test_always_skip
+ skip "always"
+ end
+
+ def test_always_fail
+ assert_equal(0,1)
+ end
+end
+