Sha256: 25e2affac96a46ec45918471fc505907a5196a2e3d76e25aa072ebca3ea36a94
Contents?: true
Size: 1.59 KB
Versions: 2
Compression:
Stored size: 1.59 KB
Contents
require 'assert' module CapUtil class CapUtilTests < Assert::Context desc "the CapUtil module" setup do @mod = CapUtil end subject { @mod } should have_imeth :halt, :time should have_imeths :color, :say, :say_bulleted, :say_error, :say_warning should have_imeths :run_locally, :run_locally_with_stdin end class HaltTests < CapUtilTests desc "`halt` util methods" should "raise a `DeployHalted` custom exception" do assert_raises(CapUtil::DeployHalted) { subject.halt } end end class CapUtilMixinTests < Assert::Context desc "the CapUtil mixin" setup do @cap_util = TestHelpers::AnCapUtil.new(FakeCap.new) end subject { @cap_util } should have_accessor :cap should have_cmeth :halt should have_imeth :halt should have_cmeths :color, :say, :say_bulleted, :say_error, :say_warning should have_imeths :color, :say, :say_bulleted, :say_error, :say_warning should have_cmeths :run_locally, :run_locally_with_stdin should have_imeths :run_locally, :run_locally_with_stdin should have_imeths :run, :run_with_stdin, :run_as, :run_as_with_stdin should have_cmeth :time should have_imeth :time should have_imeths :get, :hostname end class DeployHaltedTests < Assert::Context desc "the CapUtility DeployHalted custome exception" setup do @err = CapUtil::DeployHalted.new end subject { @err } should "be a `RuntimeError`" do assert_kind_of RuntimeError, subject end should "have no backtrace" do assert_empty subject.backtrace end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cap-util-0.4.0 | test/cap_util_tests.rb |
cap-util-0.3.0 | test/cap_util_tests.rb |