Sha256: c952ee31ee1c2356c00af10864ecf9999dffc9a57bd3c46820b6a4466565b20b

Contents?: true

Size: 286 Bytes

Versions: 1

Compression:

Stored size: 286 Bytes

Contents

require 'fileutils'

Before do
  @aruba_timeout_seconds = 5
  @real_home = ENV['HOME']
  fake_home = File.join('/tmp', 'fakehome')
  FileUtils.rm_rf fake_home if File.exists? fake_home
  FileUtils.mkdir_p fake_home
  ENV['HOME'] = fake_home
end

After do
  ENV['HOME'] = @real_home
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
github_cli-0.4.2 features/support/hooks.rb