Add failing test for #183

This commit is contained in:
Stéphane Goetz 2019-12-29 17:40:05 +01:00
parent 43a4d8ef0d
commit 21eb4992d3
1 changed files with 3 additions and 1 deletions

View File

@ -82,8 +82,10 @@ class BuilderTest extends TestCase
public function providerCreatePage()
{
return [
// File, Url, Uri, Title
['A Page.md', 'dir/A_Page.html', 'A_Page.html', 'A Page'],
['Page#1.md', 'dir/Page1.html', 'Page1.html', 'Page#1']
['Page#1.md', 'dir/Page1.html', 'Page1.html', 'Page#1'],
['你好世界.md', 'dir/你好世界.html', '你好世界.html', '你好世界']
];
}