Sha256: 17ea465fa0a2fb17fe25d798f707a807af78656fa2232f6120f2bd92bba75039
Contents?: true
Size: 1.56 KB
Versions: 1
Compression:
Stored size: 1.56 KB
Contents
require 'rexml/document' REPORTS_DIR = File.dirname(__FILE__) + '/reports' describe "Spinach acceptance" do it "should generate one XML file" do File.exist?(File.join(REPORTS_DIR, 'FEATURES-Example-Spinach-feature.xml')).should == true Dir["#{REPORTS_DIR}/FEATURES-*Spinach*.xml"].length.should == 1 end context "SPINACH report file" do before :each do @doc = File.open(File.join(REPORTS_DIR, 'FEATURES-Example-Spinach-feature.xml')) do |f| REXML::Document.new(f) end end it "should have three tests and two failures" do @doc.root.attributes["errors"].should == "2" @doc.root.attributes["failures"].should == "1" @doc.root.attributes["tests"].should == "4" @doc.root.elements.to_a("/testsuite/testcase").size.should == 4 end it "should have one failure for the lazy hacker" do failures = @doc.root.elements.to_a("/testsuite/testcase[@name='Lazy hacker']/failure") failures.size.should == 1 failures.first.attributes["type"].should =~ /ExpectationNotMetError/ end it "should have one failure for missing steps" do failures = @doc.root.elements.to_a("/testsuite/testcase[@name='Missing steps']/failure") failures.size.should == 1 failures.first.attributes["type"].should =~ /StepNotDefinedException/ end it "should have one failure for the bad coder" do failures = @doc.root.elements.to_a("/testsuite/testcase[@name='Bad coder']/failure") failures.size.should == 1 failures.first.attributes["type"].should == "RuntimeError" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ci_reporter_spinach-0.0.1 | acceptance/verification_spec.rb |