require 'rspec' shared_examples 'Valid XML Document' do it { subject.class.schema.should be_present } specify do begin should be_valid rescue RSpec::Expectations::ExpectationNotMetError => e puts subject.to_xml puts subject.schema_validation_errors raise e end end end