Sha256: 4efb493e5f68e3f70ed454adeeb48f09dc7b2524044bdf2688d0e20f126ece0c
Contents?: true
Size: 512 Bytes
Versions: 2
Compression:
Stored size: 512 Bytes
Contents
require_relative 'spec_helper' 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rspec_junit-3.0.4 | spec/formatter_conformity_spec.rb |
rspec_junit-3.0.3 | spec/formatter_conformity_spec.rb |