1--TEST--
2Test the basics to function XSLTProcessor::hasExsltSupport().
3--CREDITS--
4Rodrigo Prado de Jesus <royopa [at] gmail [dot] com>
5--EXTENSIONS--
6xsl
7--FILE--
8<?php
9$proc = new XSLTProcessor();
10var_dump($proc->hasExsltSupport());
11?>
12--EXPECT--
13bool(true)
14