Sha256: 118df342d2253d7d6ed611e9370864fa7ffdbe8608064fb9ecbfc5273974ed2c
Contents?: true
Size: 589 Bytes
Versions: 14
Compression:
Stored size: 589 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 be(0) end it 'returns the help text' do expect(stdout).to include('Licensee commands:') end end
Version data entries
14 entries across 14 versions & 1 rubygems