# File test/test_Error.rb, line 320
    def test_alias_error
      @Error.alias_error = {
        :alias_path => 'bar',
        :orig_path => 'foo',
        :virtual_host => 'www2',
        :exception => RuntimeError.new('test')
      }
      assert_equal('bar', @Error.alias_path)
      assert_equal('foo', @Error.alias_orig_path)
      assert_equal('www2', @Error.alias_virtual_host)
      assert_equal('RuntimeError', @Error.alias_error_type)
      assert_equal('test', @Error.alias_error_msg)
    end