File: command.rb

package info (click to toggle)
ruby-fission 0.5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 624 kB
  • sloc: ruby: 4,664; makefile: 10
file content (12 lines) | stat: -rw-r--r-- 326 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
shared_context 'command_setup' do
  before do
    @string_io = StringIO.new
    ui_stub = Fission::UI.new(@string_io)
    Fission::UI.stub(:new).and_return(ui_stub)

    @all_running_response_mock = double('all_running_response')
    @state_response_mock = double('state_response')
    @vm_mock = double('vm_mock')
  end

end