Sha256: 2d9fb17900cccb27ea8ff250c5319768501d9447183768b4177c87654c684fd1
Contents?: true
Size: 742 Bytes
Versions: 28
Compression:
Stored size: 742 Bytes
Contents
require 'spec_helper' feature 'Heroku' do scenario 'Suspend a project with --heroku=true' do run_jetfuel('--heroku=true') expect(FakeHeroku).to have_gem_included(project_path, 'rails_12factor') expect(FakeHeroku).to have_created_app_for('staging') expect(FakeHeroku).to have_created_app_for('production') expect(FakeHeroku).to have_configured_vars('staging', 'SECRET_KEY_BASE') expect(FakeHeroku).to have_configured_vars('production', 'SECRET_KEY_BASE') bin_setup = IO.read("#{project_path}/bin/setup") app_name = JetfuelTestHelpers::APP_NAME expect(bin_setup).to include("heroku join --app #{app_name}-staging") expect(bin_setup).to include("heroku join --app #{app_name}-production") end end
Version data entries
28 entries across 28 versions & 1 rubygems