aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_ifunless.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_ifunless.rb')
-rw-r--r--test/ruby/test_ifunless.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/ruby/test_ifunless.rb b/test/ruby/test_ifunless.rb
index bffc794512..e144ff8efd 100644
--- a/test/ruby/test_ifunless.rb
+++ b/test/ruby/test_ifunless.rb
@@ -2,13 +2,13 @@ require 'test/unit'
class TestIfunless < Test::Unit::TestCase
def test_if_unless
- $x = 'test';
- assert(if $x == $x then true else false end)
- $bad = false
- unless $x == $x
- $bad = true
+ x = 'test';
+ assert(if x == x then true else false end)
+ bad = false
+ unless x == x
+ bad = true
end
- assert(!$bad)
- assert(unless $x != $x then true else false end)
+ assert(!bad)
+ assert(unless x != x then true else false end)
end
end