1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-17 07:46:29 +02:00

Made it easier to debug a single plugin. Added extra checks in the linksword plugin test. Disabled empty db_verify tests.

This commit is contained in:
Cameron
2018-07-23 14:02:30 -07:00
parent 3c8e52af93
commit 0a1d768840
3 changed files with 35 additions and 7 deletions

View File

@@ -65,6 +65,22 @@
$actual = $this->arrObj->unserialize($string_4);
$this->assertArrayHasKey('json', $actual);
// case linkwords prefs.
$string_5 = "array (
'OLDDEFAULT' => '',
'TITLE' => '',
'SUMMARY' => 1,
'BODY' => 1,
'DESCRIPTION'=> 1,
'USER_TITLE' => '',
'USER_BODY' => 1,
'LINKTEXT' => '',
'RAWTEXT' => ''
)";
$actual = $this->arrObj->unserialize($string_5);
$this->assertArrayHasKey('TITLE', $actual);
}
/*