Sha256: 04696d5854453b7895be5837ba623add8bc7ca5ae733d08558b17a8cfedcd56c
Contents?: true
Size: 926 Bytes
Versions: 10
Compression:
Stored size: 926 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 "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 "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 it_should_behave_like "it takes an environment name and an account name" end
Version data entries
10 entries across 10 versions & 1 rubygems