tracks/vendor/rails/actionpack/test/testing_sandbox.rb
2008-05-20 21:28:26 +01:00

11 lines
205 B
Ruby

module TestingSandbox
# Temporarily replaces KCODE for the block
def with_kcode(kcode)
old_kcode, $KCODE = $KCODE, kcode
begin
yield
ensure
$KCODE = old_kcode
end
end
end