Example #1
0
 public function test_can_cache_the_association_with_custom_region()
 {
     $this->relation->cache(1, 'custom_region');
     $this->relation->build();
     $cache = $this->getAssocValue($this->field, 'cache');
     $this->assertEquals(1, $cache['usage']);
     $this->assertEquals('custom_region', $cache['region']);
 }