Sha256: 96853e838fa899a885ec1b89a67e7edb931db183b59e0668b52ff1a56aa4488d
Contents?: true
Size: 448 Bytes
Versions: 24
Compression:
Stored size: 448 Bytes
Contents
require 'spec_helper' describe SimpleDeploy::StackLister do include_context 'stubbed config' it "should list the stack entries" do entry_lister_mock = mock 'entry lister mock' SimpleDeploy::EntryLister.should_receive(:new). and_return entry_lister_mock entry_lister_mock.should_receive(:all) stack_lister = SimpleDeploy::StackLister.new stack_lister.all end end
Version data entries
24 entries across 24 versions & 1 rubygems