X-Git-Url: https://git.rapsys.eu/bbcode/blobdiff_plain/c984cf9f2a00294d69fa29da1c299b7996ccf399..8c57c842bee195859686763a89f55ef252052e64:/tests/003.phpt?ds=sidebyside
diff --git a/tests/003.phpt b/tests/003.phpt
index 0e30488..f9b0362 100644
--- a/tests/003.phpt
+++ b/tests/003.phpt
@@ -1,51 +1,13 @@
--TEST--
-Check for bbcode clone
+Check for missing tag arg
--SKIPIF--
--FILE--
[
- 'type' => BBCODE::TYPE_ROOT,
- 'childs' => ['ul','url','img','b','i']
- ],
- 'i' => [
- 'type' => BBCODE::TYPE_NOARG
- //TODO: by default open tag = and close tag =
- ],
- 'b' => [
- 'type' => BBCODE::TYPE_NOARG
- ],
- 'ul' => [
- 'type' => BBCODE::TYPE_NOARG,
- 'childs' => [ 'li' ]
- ],
- 'li' => [
- 'type' => BBCODE::TYPE_NOARG,
- 'parent' => 'ul',
- 'childs' => ['url','img','b','i']
- ],
- 'url' => [
- 'type' => BBCODE::TYPE_OPTARG,
- 'open_tag' => '',
- 'close_tag' => '',
- 'default_arg' => '{CONTENT}',
- 'parent' => [ '', 'li', 'b', 'i' ]
- ]
- ],
- [
- ':)' => '',
- ':(' => '',
- ':D' => '',
- ':p' => '',
- ':|' => '',
- ':6:' => ''
- ],
- BBCODE::REMOVE_EMPTY
-);
-$cln = clone $obj;
-echo $cln->parse('[ul][li][url=https://rapsys.eu]Rapsys[/url][/li][li][url=https://google.fr]Google[/url][/li][/ul]');
-?>
+try {
+ $obj = new bbcode();
+} catch (Exception $e) {
+ echo $e->getMessage();
+}
--EXPECT--
-[ul][li][url=https://rapsys.eu]Rapsys[/url][/li][li][url=https://google.fr]Google[/url][/li][/ul]
+BBCode::__construct() expects at least 1 parameter, 0 given