Sha256: 2dfb2e8ab083d339fd17ca63bafe0720ab590455f8ac785876184f9c3af22c78
Contents?: true
Size: 1.5 KB
Versions: 4
Compression:
Stored size: 1.5 KB
Contents
require 'test_helper' require 'solusvm/cli' class TestGeneralCli < Test::Unit::TestCase def setup # Prevents mocha from stubbing non existent methods so that we now if the CLI is failing because # something was moved around. Mocha::Configuration.prevent(:stubbing_non_existent_method) end def test_should_delegate_templates_to_general Solusvm.expects(:config).with("thelogin", "thekey", { :url => "theurl" }) Solusvm::General.stubs(:new => mock do expects(:successful?).returns(true) expects(:templates).with("type").returns("thetemplates") end) $stdout.expects(:puts).with("thetemplates") Solusvm::Cli.start(cli_expand_base_arguments(["general", "templates", "type"])) end def test_should_delegate_plans_to_general Solusvm.expects(:config).with("thelogin", "thekey", { :url => "theurl" }) Solusvm::General.stubs(:new => mock do expects(:successful?).returns(true) expects(:plans).with("type").returns("theplans") end) $stdout.expects(:puts).with("theplans") Solusvm::Cli.start(cli_expand_base_arguments(["general", "plans", "type"])) end def test_should_delegate_isos_to_general Solusvm.expects(:config).with("thelogin", "thekey", { :url => "theurl" }) Solusvm::General.stubs(:new => mock do expects(:successful?).returns(true) expects(:isos).with("type").returns("theisos") end) $stdout.expects(:puts).with("theisos") Solusvm::Cli.start(cli_expand_base_arguments(["general", "isos", "type"])) end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
solusvm-1.2.1 | test/cli/test_general_cli.rb |
solusvm-1.2.0 | test/cli/test_general_cli.rb |
solusvm-1.1.0.beta2 | test/cli/test_general_cli.rb |
solusvm-1.1.0.beta1 | test/cli/test_general_cli.rb |