Sha256: a90e6c6c530930d49d91b41e4540ab414ba8ff52a84509614c58b012366f3aac

Contents?: true

Size: 590 Bytes

Versions: 1

Compression:

Stored size: 590 Bytes

Contents

# frozen_string_literal: true

RSpec.describe 'command line invocation' do
  let(:command) { ['bundle', 'exec', 'bin/licensee', 'help'] }
  let(:arguments) { [] }
  let(:output) do
    Dir.chdir project_root do
      Open3.capture3(*[command, arguments].flatten)
    end
  end
  let(:parsed_output) { YAML.safe_load(stdout) }
  let(:stdout) { output[0] }
  let(:stderr) { output[1] }
  let(:status) { output[2] }

  it 'Returns a zero exit code' do
    expect(status.exitstatus).to eql(0)
  end

  it 'returns the help text' do
    expect(stdout).to include('Licensee commands:')
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
licensee-9.12.0 spec/bin_spec.rb