2015-06-25 17:00:29 -04:00
|
|
|
<?php
|
|
|
|
|
2015-06-26 16:39:10 -04:00
|
|
|
use \AnimeClient\Config;
|
|
|
|
|
2015-06-25 17:00:29 -04:00
|
|
|
class FunctionsTest extends AnimeClient_TestCase {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Basic sanity test for _dir function
|
|
|
|
*/
|
|
|
|
public function testDir()
|
|
|
|
{
|
2015-06-29 10:26:50 -04:00
|
|
|
$this->assertEquals('foo' . DIRECTORY_SEPARATOR . 'bar', _dir('foo', 'bar'));
|
2015-06-25 17:00:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testIsSelected()
|
|
|
|
{
|
2015-06-26 12:03:42 -04:00
|
|
|
// Failure to match
|
|
|
|
$this->assertEquals('', is_selected('foo', 'bar'));
|
2015-06-25 17:00:29 -04:00
|
|
|
|
2015-06-26 12:03:42 -04:00
|
|
|
// Matches
|
|
|
|
$this->assertEquals('selected', is_selected('foo', 'foo'));
|
2015-06-25 17:00:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testIsNotSelected()
|
|
|
|
{
|
2015-06-26 12:03:42 -04:00
|
|
|
// Failure to match
|
|
|
|
$this->assertEquals('selected', is_not_selected('foo', 'bar'));
|
2015-06-25 17:00:29 -04:00
|
|
|
|
2015-06-26 12:03:42 -04:00
|
|
|
// Matches
|
|
|
|
$this->assertEquals('', is_not_selected('foo', 'foo'));
|
2015-06-25 17:00:29 -04:00
|
|
|
}
|
2015-09-25 13:41:12 -04:00
|
|
|
}
|