Sha256: 1a9118df55f8ec4a43d4a7e174dd82d4f77d814f22acd4d720c9f8536e5a3c39

Contents?: true

Size: 527 Bytes

Versions: 2

Compression:

Stored size: 527 Bytes

Contents

require 'pathname'
require Pathname(__FILE__).ascend{|d| h=d+'test_helper.rb'; break h if h.file?}

describe Mannequin::Text.new do
  subject { Mannequin::Text.new }
  describe "creating text" do
    it "must have five paragraphs of lorem ipsum" do
      subject.must_respond_to(:lipsum_paragraphs_1)
      subject.must_respond_to(:lipsum_paragraphs_2)
      subject.must_respond_to(:lipsum_paragraphs_3)
      subject.must_respond_to(:lipsum_paragraphs_4)
      subject.must_respond_to(:lipsum_paragraphs_5)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mannequin-0.3.0 test/lib/mannequin/text_test.rb
mannequin-0.2.0 test/lib/mannequin/text_test.rb