From: Nobuyoshi Nakada Date: 2007-06-22T05:50:50+09:00 Subject: Re: Performing $SAFE checks with test-unit Hi, At Fri, 22 Jun 2007 00:44:37 +0900, Daniel Berger wrote in [ruby-talk:256413]: > Is there a way to perform $SAFE checks with test-unit? I tried this > with Ruby 1.8.6: def test_replace_in_safe_mode o = {1,2,3,4} assert_raise(SecurityError) do proc do $SAFE = 4 o.replace({'a', 'b'}) end.call end end -- Nobu Nakada