forked from lox/pheasant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArrayCacheTest.php
38 lines (27 loc) · 993 Bytes
/
ArrayCacheTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
namespace Pheasant\Tests;
use Pheasant\Tests\Examples\Animal;
class ArrayCacheTest extends \Pheasant\Tests\MysqlTestCase
{
public function testRoundTripInCache()
{
$cache = new \Pheasant\Cache\ArrayCache();
$animal = new Animal(array('id' => 1, 'type' => 'llama'));
$cache->add($animal);
$this->assertTrue($cache->has($animal->identity()));
$row = $cache->get($animal->identity(), function() {
throw new \InvalidArgumentException("Missing animal");
});
$this->assertEquals($animal, $row);
}
public function testMethodIsAccessible()
{
$cache = new \Pheasant\Cache\ArrayCache();
$animal = new Animal(array('id' => 1, 'type' => 'llama'));
$cache->add($animal);
$row = $cache->get($animal->identity(), function() {
throw new \InvalidArgumentException("Missing animal");
});
$this->assertTrue(method_exists($row, 'scopes'));
}
}