Sha256: fe9b495ac33234d4f7e5e5f683da5064341bf083e0c609ac7105a5b618866928
Contents?: true
Size: 933 Bytes
Versions: 26
Compression:
Stored size: 933 Bytes
Contents
require 'spec_helper' describe "ey logs" do given "integration" it "prints logs returned by awsm" do api_scenario "one app, one environment" ey %w[logs -e giblets] @out.should match(/MAIN LOG OUTPUT/) @out.should match(/CUSTOM LOG OUTPUT/) @err.should be_empty end it "complains when it can't infer the environment" do api_scenario "one app, many environments" ey %w[logs], :expect_failure => true @err.should =~ /repository url in this directory is ambiguous/i end end describe "ey logs" do given "integration" def command_to_run(opts) cmd = ["logs"] cmd << "--environment" << opts[:environment] if opts[:environment] cmd << "--account" << opts[:account] if opts[:account] cmd end def verify_ran(scenario) @out.should match(/Main logs for #{scenario[:environment]}/) end include_examples "it takes an environment name and an account name" end
Version data entries
26 entries across 26 versions & 1 rubygems