# File test.rb, line 206
    def test_include_path
      fs = PageTemplate::FileSource.new(
          'include_path' => File.join(Dir.getwd,'tdata')
        )
      assert_equal([File.join(Dir.getwd,'tdata')],fs.paths,
        "Explicit set include_path should only include the one element")
      assert_equal(@@text,fs.get('dummy.txt'),
        "Just a filename of something in an include path works")
    end