Changeset 92

Show
Ignore:
Timestamp:
03/26/08 15:41:13 (2 years ago)
Author:
tolsen
Message:

fix require to use new directory
change namespace to Inspector

Location:
inspector/trunk/lib
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • inspector/trunk/lib/inspector/assertions.rb

    r14 r92  
    2424require 'rexml/document' 
    2525 
    26 module Test::XML::Assertions 
     26module Inspector::Assertions 
    2727 
    2828  TEST_XML_REXML_DOC_CTX = { 
  • inspector/trunk/lib/inspector.rb

    r91 r92  
    2222 
    2323require 'test/unit' 
    24 require 'test/xml/assertions' 
    2524 
    26 module Test::XML 
     25require File.dirname(__FILE__) + '/inspector/assertions.rb' 
     26 
     27module Inspector 
    2728end 
    2829 
     
    3031 
    3132  def assert_xml_matches doc 
    32     yield Test::XML::Assertions::XmlMatchAssertion.new(doc, self) 
     33    yield Inspector::Assertions::XmlMatchAssertion.new(doc, self) 
    3334  end 
    3435