--TEST-- pearbug13693 --INI-- track_errors=Off --FILE-- $dir, 'lifeTime' => 60, ); $id = '#13693'; $cache = new Cache_Lite($options); $cache->save('stuff', $id); // Must be true echo $cache->remove($id) === true ? "OK\n" : "ERROR\n"; // Will return a PEAR Error echo $cache->remove($id) instanceof PEAR_Error ? "OK\n" : "ERROR\n"; // Will return true echo $cache->remove($id, 'default', true) === true ? "OK\n" : "ERROR\n"; // Remove temp dir rmdir($dir); --EXPECT-- OK OK OK