Added test data

This commit is contained in:
Michael 2022-01-30 16:21:07 +00:00
parent 95664a6824
commit 4f60b1660e
1 changed files with 10 additions and 2 deletions

View File

@ -33,7 +33,15 @@ class TagTest extends TestCase
{
$body = '![url=https://pirati.ca/profile/test1]Testgruppe 1b[/url] Test, please ignore';
$tags = Tag::getFromBody($body);
// Some expectations here
self::markTestIncomplete('Needs knowledge.');
$expected = [
[
'![url=https://pirati.ca/profile/test1]Testgruppe 1b[/url]',
'!',
'https://pirati.ca/profile/test1',
'Testgruppe 1b'
]
];
self::assertEquals($expected, $tags);
}
}