vaguerent/test/vagrant/commands/status_test.rb
Mitchell Hashimoto 3107fa763f Status command
2010-04-13 17:02:43 -07:00

21 lines
442 B
Ruby

require File.join(File.dirname(__FILE__), '..', '..', 'test_helper')
class CommandsStatusTest < Test::Unit::TestCase
setup do
@klass = Vagrant::Commands::Status
@persisted_vm = mock("persisted_vm")
@persisted_vm.stubs(:execute!)
@env = mock_environment
@env.stubs(:require_persisted_vm)
@env.stubs(:vm).returns(@persisted_vm)
@instance = @klass.new(@env)
end
context "executing" do
# TODO
end
end