Rename project to luxtools, remove client tool
Some checks failed
DokuWiki Default Tasks / all (push) Has been cancelled

This commit is contained in:
2026-01-05 16:51:42 +01:00
parent b64d4d91ff
commit e59970e0b8
15 changed files with 66 additions and 325 deletions

View File

@@ -1,35 +1,35 @@
<?php
namespace dokuwiki\plugin\filetools\test;
namespace dokuwiki\plugin\luxtools\test;
use DokuWikiTest;
use DOMWrap\Document;
/**
* Tests for the filetools plugin.
* Tests for the luxtools plugin.
*
* These test assume that the directory filetools has the following content:
* These test assume that the directory luxtools has the following content:
* - exampledir (directory)
* - example2.txt (text file)
* - example.txt (text file)
* - exampleimage.png (image file)
*
* @group plugin_filetools
* @group plugin_luxtools
* @group plugins
*/
class plugin_filetools_test extends DokuWikiTest
class plugin_luxtools_test extends DokuWikiTest
{
public function setUp(): void
{
global $conf;
$this->pluginsEnabled[] = 'filetools';
$this->pluginsEnabled[] = 'luxtools';
parent::setUp();
// Setup config so that access to the TMP directory will be allowed
$conf ['plugin']['filetools']['paths'] = TMP_DIR . '/filelistdata/' . "\n" . 'W> http://localhost/';
$conf ['plugin']['luxtools']['paths'] = TMP_DIR . '/filelistdata/' . "\n" . 'W> http://localhost/';
}