Class: Scenario::AppWithoutEnv

Inherits:
Base
  • Object
show all
Defined in:
lib/engineyard-cloud-client/test/fake_awsm/scenarios.rb

Instance Attribute Summary

Attributes inherited from Base

#git_remote, #user

Instance Method Summary collapse

Constructor Details

#initialize(name = 'App Without Env', email = '[email protected]', pass = 'without') ⇒ AppWithoutEnv

Returns a new instance of AppWithoutEnv.



103
104
105
106
107
108
109
110
# File 'lib/engineyard-cloud-client/test/fake_awsm/scenarios.rb', line 103

def initialize(name = 'App Without Env', email = '[email protected]', pass = 'without')
  super

  @app = @account.apps.create({
    "name" => "rails232app",
    "repository_uri" => git_remote
  })
end