Sha256: 8349d9e05a886cae2a482e78447cce59fcad1014e5f745580dffe9958ef76c98
Contents?: true
Size: 713 Bytes
Versions: 24
Compression:
Stored size: 713 Bytes
Contents
shared_context "cli config" do before do @config_mock = mock 'config mock' SimpleDeploy.stub(:create_config).and_return(@config_mock) SimpleDeploy.stub(:config).and_return(@config_mock) end end shared_context "received config" do before do @config_mock = mock 'config mock' SimpleDeploy.should_receive(:config).and_return(@config_mock) end end shared_context "stubbed config" do before do @config_mock = mock 'config mock' SimpleDeploy.stub(:config).and_return(@config_mock) end end shared_context "double stubbed config" do |methods_hash| before do @config_stub = stub 'config stub', methods_hash SimpleDeploy.stub(:config).and_return(@config_stub) end end
Version data entries
24 entries across 24 versions & 1 rubygems