require File.join(__FILE__.gsub(/(.*)?\/spec\/.*$/, '\1'), 'spec/spec_helper') describe "Core Extensions" do it "should include TML validation in ActiveSupport test cases" do ActiveSupport::TestCase.should include(Rtml::Rules::DomValidation) end it "should support indentation in Strings" do s = "hello\nworld".indent s.should == "\thello\n\tworld" end end