Sha256: aa084ca0b69ebfe1c2a90296a166413fece6a5d069aaca7b5b97302486a5b26a

Contents?: true

Size: 448 Bytes

Versions: 2

Compression:

Stored size: 448 Bytes

Contents

describe HerokuConfig::CLI do
  before(:all) do
    @args = "APP --noop"
  end

  describe "heroku-config" do
    it "aws-rotate" do
      out = execute("exe/heroku-config aws-rotate #{@args}")
      expect(out).to include("NOOP: Updating access key for user: fakeuser")
    end

    it "aws-rotate-all" do
      out = execute("exe/heroku-config aws-rotate-all spec/fixtures/heroku-apps.txt")
      expect(out).to include("NOOP")
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
heroku-config-0.4.0 spec/lib/cli_spec.rb
heroku-config-0.3.0 spec/lib/cli_spec.rb