[ruby/irb] Clear temporary directories

(https://github.com/ruby/irb/pull/894)

https://github.com/ruby/irb/commit/dc0dd25a39
This commit is contained in:
Nobuyoshi Nakada 2024-03-06 17:28:12 +09:00 committed by git
parent 9ab1fa3bf5
commit 0c2e976894

View File

@ -27,6 +27,7 @@ module TestIRB
ENV["IRBRC"] = @backup_irbrc ENV["IRBRC"] = @backup_irbrc
Encoding.default_external = @backup_default_external Encoding.default_external = @backup_default_external
$VERBOSE = @original_verbose $VERBOSE = @original_verbose
FileUtils.rm_rf(@tmpdir)
end end
class TestInputMethodWithRelineHistory < TestInputMethod class TestInputMethodWithRelineHistory < TestInputMethod