Sha256: 97f6a30f9c619ef1a90f042cebc2a120f260b77d2fd518de86284b337039efdb
Contents?: true
Size: 447 Bytes
Versions: 17
Compression:
Stored size: 447 Bytes
Contents
require 'spec_helper' describe Stackster do it "should list the stack entries" do config_mock = mock 'config mock' entry_lister_mock = mock 'entry lister mock' Stackster::EntryLister.should_receive(:new). and_return entry_lister_mock entry_lister_mock.should_receive(:all) stack_lister = Stackster::StackLister.new :config => config_mock stack_lister.all end end
Version data entries
17 entries across 17 versions & 1 rubygems