bootsnap/test/helper_test.rb

16 lines
342 B
Ruby

# frozen_string_literal: true
require "test_helper"
class HelperTest < Minitest::Test
include CompileCacheISeqHelper
include TmpdirHelper
def test_validate_cache_path
path = Help.set_file("a.rb", "a = a = 3", 100)
cp = Help.cache_path("#{@tmp_dir}-iseq", path)
load(path)
assert_equal(true, File.file?(cp))
end
end