Sha256: 09b5b197391efa9992c783ca993d69111d4770a5dfc04f301c82425bdff23455

Contents?: true

Size: 568 Bytes

Versions: 1

Compression:

Stored size: 568 Bytes

Contents

require 'spec_helper'

describe "ey environments" do

  given "integration"

  before(:all) do
    login_scenario "one app, many environments"
  end

  it "outputs the status of the deployment" do
    ey %w[status -e giblets]
    @out.should =~ /Application:\s+rails232app/
    @out.should =~ /Environment:\s+giblets/
    @out.should =~ /Ref:\s+HEAD/
    @out.should =~ /Resolved Ref:\s+HEAD/
    @out.should =~ /Deployed by:\s+User Name/
    @out.should =~ /Started at:/
    @out.should =~ /Finished at:/
    @out.should =~ /This deployment was successful/
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
engineyard-1.7.0.pre2 spec/ey/status_spec.rb