summaryrefslogtreecommitdiff
path: root/ruby_1_8_5/test/ruby/test_condition.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_8_5/test/ruby/test_condition.rb')
-rw-r--r--ruby_1_8_5/test/ruby/test_condition.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/ruby_1_8_5/test/ruby/test_condition.rb b/ruby_1_8_5/test/ruby/test_condition.rb
deleted file mode 100644
index ba2e0688f3..0000000000
--- a/ruby_1_8_5/test/ruby/test_condition.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-require 'test/unit'
-
-class TestCondition < Test::Unit::TestCase
-
- # [should] first test to see if we can run the tests.
-
- def test_condition
- $x = '0';
-
- $x == $x && assert(true)
- $x != $x && assert(false)
- $x == $x || assert(false)
- $x != $x || assert(true)
-
- end
-end