Sha256: aaddcfc75bec37bd9a31f623f9762b84a061a326509217d2b50409a14790ff00

Contents?: true

Size: 393 Bytes

Versions: 4

Compression:

Stored size: 393 Bytes

Contents

require File.dirname(__FILE__) + '/../../../spec_helper.rb'

module Spec
module Runner
module Formatter
context "RdocFormatterDryRun" do
    setup do
        @io = StringIO.new
        @formatter = RdocFormatter.new(@io, true)
    end
    specify "should not produce summary on dry run" do
        @formatter.dump_summary(3, 2, 1)
        @io.string.should_eql ""      
    end
end
end
end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
riess-0.0.8 vendor/rspec-0.8.2/spec/spec/runner/formatter/rdoc_formatter_dry_run_spec.rb
rspec-0.8.0 spec/spec/runner/formatter/rdoc_formatter_dry_run_spec.rb
rspec-0.8.1 spec/spec/runner/formatter/rdoc_formatter_dry_run_spec.rb
rspec-0.8.2 spec/spec/runner/formatter/rdoc_formatter_dry_run_spec.rb