Sha256: 8ed2b6144bdbf2cc12e3ccffc0d8ee971874419d7e1d5b880d7959005fef9ef5
Contents?: true
Size: 1.17 KB
Versions: 5
Compression:
Stored size: 1.17 KB
Contents
require File.dirname(__FILE__) + '/../../../spec_helper.rb' module Spec module Runner module Formatter describe "SpecdocFormatter" do before(:each) do @io = StringIO.new @formatter = SpecdocFormatter.new(@io) end it "should produce standard summary" do @formatter.dump_summary(3, 2, 1) @io.string.should eql("\nFinished in 3 seconds\n\n2 examples, 1 failure\n") end it "should push context name" do @formatter.add_behaviour("context") @io.string.should eql("\ncontext\n") end it "should push failing spec name and failure number" do @formatter.example_failed("spec", 98, Reporter::Failure.new("c s", RuntimeError.new)) @io.string.should eql("- spec (ERROR - 98)\n") end it "should push nothing on start" do @formatter.start(5) @io.string.should eql("") end it "should push nothing on start dump" do @formatter.start_dump @io.string.should eql("") end it "should push passing spec name" do @formatter.example_passed("spec") @io.string.should eql("- spec\n") end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems