Sha256: ce6a039074208fb8ca8f25ae9b2e9a97e5862d1e0eb2ec58b40792fbbc94f805

Contents?: true

Size: 442 Bytes

Versions: 1

Compression:

Stored size: 442 Bytes

Contents

require_relative "../../spec_helper"

describe Lono::Inspector do
  before(:all) do
    @args = "--noop"
  end

  describe "lono inspect" do
    it "depends" do
      out = execute("bin/lono inspect depends my-stack #{@args}")
      expect(out).to include("Generating dependencies tree")
    end

    it "summary" do
      out = execute("bin/lono inspect summary my-stack #{@args}")
      expect(out).to include("Summary")
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lono-3.5.0 spec/lib/lono/inspect_spec.rb