1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-04 21:57:51 +02:00

More checks on check_class()

This commit is contained in:
Cameron
2019-03-02 11:21:04 -08:00
parent 2e7c9818df
commit f915d66cf8

View File

@@ -54,6 +54,11 @@
$result = check_class(254, "253,254,250,251,0");
$this->assertTrue($result);
$result = check_class('0', "253,254,250,251,0");
$this->assertTrue($result);
$result = check_class(null, "253,254,250,251,0");
$this->assertTrue($result);
}