Sha256: 9bd4806332ea1067b7131400c41c3a7472fcd44a33fe12bf81ab6a9fe68e4fba

Contents?: true

Size: 506 Bytes

Versions: 4

Compression:

Stored size: 506 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
      @deploy_dir.join('current', 'REVISION').should exist
    end

    it "restarts the app servers" do
      restart = @deploy_dir.join('current', 'restart')
      restart.should exist
      restart.read.chomp.should == %|LANG="en_US.UTF-8" /engineyard/bin/app_rails31 deploy|
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
engineyard-serverside-2.0.0.pre3 spec/basic_deploy_spec.rb
engineyard-serverside-2.0.0.pre2 spec/basic_deploy_spec.rb
engineyard-serverside-2.0.0.pre1 spec/basic_deploy_spec.rb
engineyard-serverside-1.7.0.pre2 spec/basic_deploy_spec.rb