summaryrefslogtreecommitdiff
path: root/test/-ext-
diff options
context:
space:
mode:
Diffstat (limited to 'test/-ext-')
-rw-r--r--test/-ext-/test_printf.rb18
1 files changed, 7 insertions, 11 deletions
diff --git a/test/-ext-/test_printf.rb b/test/-ext-/test_printf.rb
index 4c4001654a..4b471ab5d9 100644
--- a/test/-ext-/test_printf.rb
+++ b/test/-ext-/test_printf.rb
@@ -30,24 +30,20 @@ class Test_SPrintf < Test::Unit::TestCase
end
def test_taint
- def self.to_s
- super.taint
- end
+ obj = Object.new.taint
assert_equal({to_s: true, inspect: true},
{
- to_s: Bug::Printf.s(self).tainted?,
- inspect: Bug::Printf.v(self).tainted?,
+ to_s: Bug::Printf.s(obj).tainted?,
+ inspect: Bug::Printf.v(obj).tainted?,
})
end
- def test_trust
- def self.to_s
- super.untrust
- end
+ def test_untrust
+ obj = Object.new.untrust
assert_equal({to_s: true, inspect: true},
{
- to_s: Bug::Printf.s(self).untrusted?,
- inspect: Bug::Printf.v(self).untrusted?,
+ to_s: Bug::Printf.s(obj).untrusted?,
+ inspect: Bug::Printf.v(obj).untrusted?,
})
end
end