Sha256: ec208a1b25049d08cd23d3bddd6ce6b39beadeb1cf25584867389dc3ceaea1e8
Contents?: true
Size: 517 Bytes
Versions: 12
Compression:
Stored size: 517 Bytes
Contents
require 'spec_helper' describe "Deploying a simple application" do context "without Bundler" do before(:all) do deploy_test_application('not_bundled') end it "creates a REVISION file" do expect(deploy_dir.join('current', 'REVISION')).to exist end it "restarts the app servers" do restart = deploy_dir.join('current', 'restart') expect(restart).to exist expect(restart.read.chomp).to eq(%|LANG="en_US.UTF-8" /engineyard/bin/app_rails31 deploy|) end end end
Version data entries
12 entries across 12 versions & 1 rubygems