Sha256: e26e22830380858b3ab8f12bf182e5debc1571d58344017a2b5f4d4a4cad2239
Contents?: true
Size: 411 Bytes
Versions: 3
Compression:
Stored size: 411 Bytes
Contents
RSpec::Matchers.define :contain_xml_structure do |expected| match do |actual| TestXml::MatcherMethods.xml_structure_contain(actual, expected) end failure_message_for_should do |actual| "the xml:\n#{actual}\nshould match xml structure:\n#{expected}" end failure_message_for_should_not do |actual| "the xml:\n#{actual}\nshould not match xml structure:\n#{expected}\nbut it does" end end
Version data entries
3 entries across 3 versions & 1 rubygems