c358389f25
Sync with latest Instiki Trunk (Updates Rails to 1.2.2)
12 lines
205 B
Ruby
12 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
|