Sha256: eae51af1cc489296519ef58bbf6c45719762abc0903faa80013a4f7be572c629
Contents?: true
Size: 354 Bytes
Versions: 11
Compression:
Stored size: 354 Bytes
Contents
require 'spec_helper' describe "A story" do before(:all) do @story = Story.create :text => "Once upon a time..." end it "should be shared" do @story.tell.should == 'Once upon a time...' end it "should not return its result if it storytelling is delayed" do @story.send_later(:tell).should_not == 'Once upon a time...' end end
Version data entries
11 entries across 11 versions & 5 rubygems