Module: CLI::Kit::Support::TestHelper::FakeConfig
- Defined in:
- lib/cli/kit/support/test_helper.rb
Instance Method Summary collapse
Instance Method Details
#setup ⇒ Object
30 31 32 33 34 35 |
# File 'lib/cli/kit/support/test_helper.rb', line 30 def setup super @tmpdir = Dir.mktmpdir @prev_xdg = ENV['XDG_CONFIG_HOME'] ENV['XDG_CONFIG_HOME'] = @tmpdir end |
#teardown ⇒ Object
37 38 39 40 41 |
# File 'lib/cli/kit/support/test_helper.rb', line 37 def teardown FileUtils.rm_rf(@tmpdir) ENV['XDG_CONFIG_HOME'] = @prev_xdg super end |