Sha256: a8d7454edd05b69ff347822d0c1935c5f0ce770fe616bbac5cc3e30faaf2926e
Contents?: true
Size: 702 Bytes
Versions: 24
Compression:
Stored size: 702 Bytes
Contents
require_relative 'spec_helper' describe "Rails 3.x" do it "should deploy on ruby 1.9.3" do Hatchet::AnvilApp.new("rails3_mri_193", :buildpack => buildpack).deploy do |app, heroku| add_database(app, heroku) expect(app).to be_deployed expect(successful_body(app)).to eq("hello") end end context "when not using the rails gem" do it "should deploy on ruby 1.9.3" do Hatchet::AnvilApp.new("railties3_mri_193", :buildpack => buildpack).deploy do |app, heroku, output| add_database(app, heroku) expect(app).to be_deployed expect(output).to match("Ruby/Rails") expect(successful_body(app)).to eq("hello") end end end end
Version data entries
24 entries across 24 versions & 1 rubygems