Sha256: 9ce4b50be30f5511bb9e6e991f882cb3e4b3b03d5cdc3d46c75e780af4e07fb4
Contents?: true
Size: 476 Bytes
Versions: 20
Compression:
Stored size: 476 Bytes
Contents
require 'deploy_test' class TierSettingDeployTest < DeployTest def test_sets_default_tier_as_webserver deploy(:application => 'simple', :environment => "production") assert_equal 'WebServer', @eb.environment_tier('simple', t('production', 'simple')) end def test_can_change_tier deploy(:application => 'simple', :environment => "production", :tier => 'Worker') assert_equal 'Worker', @eb.environment_tier('simple', t('production', 'simple')) end end
Version data entries
20 entries across 20 versions & 1 rubygems