34 lines
713 B
PHP
34 lines
713 B
PHP
|
<?php
|
||
|
|
||
|
use Aviat\AnimeClient\AnimeClient;
|
||
|
|
||
|
|
||
|
class AnimeClientTest extends AnimeClient_TestCase {
|
||
|
|
||
|
/**
|
||
|
* Basic sanity test for _dir function
|
||
|
*/
|
||
|
public function testDir()
|
||
|
{
|
||
|
$this->assertEquals('foo' . DIRECTORY_SEPARATOR . 'bar', \_dir('foo', 'bar'));
|
||
|
}
|
||
|
|
||
|
public function testIsSelected()
|
||
|
{
|
||
|
// Failure to match
|
||
|
$this->assertEquals('', AnimeClient::is_selected('foo', 'bar'));
|
||
|
|
||
|
// Matches
|
||
|
$this->assertEquals('selected', AnimeClient::is_selected('foo', 'foo'));
|
||
|
}
|
||
|
|
||
|
public function testIsNotSelected()
|
||
|
{
|
||
|
// Failure to match
|
||
|
$this->assertEquals('selected', AnimeClient::is_not_selected('foo', 'bar'));
|
||
|
|
||
|
// Matches
|
||
|
$this->assertEquals('', AnimeClient::is_not_selected('foo', 'foo'));
|
||
|
}
|
||
|
}
|