mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-01 06:39:18 +00:00
28 lines
708 B
PHP
28 lines
708 B
PHP
<?php
|
|
|
|
namespace Tests\Wallabag\Entity;
|
|
|
|
use Tests\Wallabag\WallabagTestCase;
|
|
use Wallabag\Entity\Entry;
|
|
|
|
class EntryTest extends WallabagTestCase
|
|
{
|
|
public function testGetLanguage()
|
|
{
|
|
$this->logInAs('admin');
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
$languages = [
|
|
'en_GB' => 'en-GB',
|
|
'en_US' => 'en-US',
|
|
'en-gb' => 'en-GB',
|
|
'en-US' => 'en-US',
|
|
'fr' => 'fr',
|
|
'fr_FR' => 'fr-FR',
|
|
'ja' => 'ja',
|
|
];
|
|
foreach ($languages as $entryLang => $lang) {
|
|
$entry->setLanguage($entryLang);
|
|
$this->assertSame($lang, $entry->getHTMLLanguage());
|
|
}
|
|
}
|
|
}
|