Sha256: 3f568c0a4fc0c7404544a42c3e3ecca09eea68ae69fc3b70d190783a8423e9d2

Contents?: true

Size: 396 Bytes

Versions: 5

Compression:

Stored size: 396 Bytes

Contents

require 'qcmd'

describe Qcmd::CLI do
  it "should call `start` when initialized" do
    Qcmd::CLI.any_instance.stub(:start) { true }
    Qcmd::CLI.any_instance.should_receive(:start)
    Qcmd::CLI.new
  end

  it 'should respond to launch' do
    Qcmd::CLI.should_receive :new
    Qcmd::CLI.launch
  end

  describe 'handling input' do
    it 'should evaluate cue commands' do
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
qcmd-0.1.14 spec/unit/cli_spec.rb
qcmd-0.1.13 spec/unit/cli_spec.rb
qcmd-0.1.12 spec/unit/cli_spec.rb
qcmd-0.1.11 spec/unit/cli_spec.rb
qcmd-0.1.10 spec/unit/cli_spec.rb