Sha256: 4afae396f250e92ff78b52dcf67fe3ca6bf9bba51b742ffb2d113d16cd6459a2

Contents?: true

Size: 480 Bytes

Versions: 3

Compression:

Stored size: 480 Bytes

Contents

describe JUnit do
  context 'interface conformity' do

    subject { JUnit.new 'some output' }

    it 'should respond to example passed' do
      should respond_to :example_passed
    end

    it 'should respond to example failed' do
      should respond_to :example_failed
    end

    it 'should respond to example pending' do
      should respond_to :example_pending
    end

    it 'should respond to dump summary' do
      should respond_to :dump_summary
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rspec_junit-3.0.2 spec/formatter_conformity_spec.rb
rspec_junit-3.0.1 spec/formatter_conformity_spec.rb
rspec_junit-3.0.0 spec/formatter_conformity_spec.rb