Sha256: dc9547aec2939912c1052da37e7fb8166f6e40e1e01b0195eb98ec86374ca831
Contents?: true
Size: 505 Bytes
Versions: 7
Compression:
Stored size: 505 Bytes
Contents
require 'test_helper' class LabsTest < Test::Unit::TestCase def setup @buildpack_path = File.expand_path 'test/fixtures/buildpacks/heroku-buildpack-ruby' end def test_can_deploy_git_app lab_name = "preboot" app = Hatchet::App.new("rails3_mri_193", labs: lab_name, buildpack: @buildpack_path) app.setup! assert(app.lab_is_installed?(lab_name), "Expected #{app.get_labs.inspect} to include {'name' => '#{lab_name}' } but it did not") ensure app.teardown! if app end end
Version data entries
7 entries across 7 versions & 1 rubygems