Sha256: 772bdf3d6f476937a0487c8aa883c9e0b07e9b4fa313616c27bc8d4cee782c15
Contents?: true
Size: 385 Bytes
Versions: 5
Compression:
Stored size: 385 Bytes
Contents
require 'rubygems' require 'minitest/autorun' require 'fileutils' require './lib/gemstone' class GemStoneTest < MiniTest::Unit::TestCase SANDBOX_PATH = './test/sandbox' ## Helpers def sandboxed_path(file_path) sandboxed_path = File.join SANDBOX_PATH, file_path end def reset_sandbox FileUtils.rm_rf SANDBOX_PATH FileUtils.mkdir SANDBOX_PATH end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
gemstone-0.4.1 | test/test_helper.rb |
gemstone-0.4 | test/test_helper.rb |
gemstone-0.3 | test/test_helper.rb |
gemstone-0.2 | test/test_helper.rb |
gemstone-0.1 | test/test_helper.rb |