Sha256: f1abe138de9abf892275c196ed3bc725c00e2d69d623ef6a59040aaf06ab8aaf
Contents?: true
Size: 781 Bytes
Versions: 14
Compression:
Stored size: 781 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' describe Evostream::CLI::Argument::Search, broken: true do let(:runner) { Evostream::Runner.new } context 'when short argument' do before { ARGV.push('--search') } after { ARGV.pop } context 'when argument with no search data' do let(:out) { /Connection to Evostream REFUSED !!/ } let(:code) { 201 } include_examples 'argument exit' include_examples 'argument output' end context 'when argument with search data', broken: true do before { ARGV.push('id: 4') } after { ARGV.pop } let(:out) { /Connection to Evostream REFUSED !!/ } let(:code) { 201 } include_examples 'argument exit' include_examples 'argument output' end end end
Version data entries
14 entries across 14 versions & 1 rubygems