define clonability
[awesomized/ext-ion] / tests / LOB.phpt
index f9855d3f810c72c6fd849e0d94dddf437c77b8d6..d95a7749fd244cd3192a13e1879ff374f962b359 100644 (file)
@@ -11,6 +11,7 @@ $l = new ion\LOB("barfuz", ion\Type::CLob);
 echo ion\serialize($l), "\n";
 $l = new ion\LOB("gooza", ion\Type::BLob);
 echo ion\serialize($l), "\n";
+var_dump(ion\unserialize(ion\serialize(clone new ion\LOB("ü"))));
 ?>
 DONE
 --EXPECTF--
@@ -18,4 +19,5 @@ TEST
 {{"foobar"}}
 {{"barfuz"}}
 {{Z29vemE=}}
+string(2) "ü"
 DONE