Sha256: 7dbbb47ee566470112f3b808537cbd1b812716e9e47be1e40d1863a197133d4f
Contents?: true
Size: 817 Bytes
Versions: 26
Compression:
Stored size: 817 Bytes
Contents
require 'spec_helper' describe "ey recipes apply" do given "integration" def command_to_run(opts) cmd = %w[recipes apply] cmd << "-e" << opts[:environment] if opts[:environment] cmd << "--account" << opts[:account] if opts[:account] cmd end def verify_ran(scenario) @out.should =~ /Uploaded recipes started for #{scenario[:environment]}/ end include_examples "it takes an environment name and an account name" it "fails when given a bad option" do ey %w[web enable --lots --of --bogus --options], :expect_failure => true @err.should include("Unknown switches") end end describe "ey recipes apply with an ambiguous git repo" do given "integration" def command_to_run(_) %w[recipes apply] end include_examples "it requires an unambiguous git repo" end
Version data entries
26 entries across 26 versions & 1 rubygems