예제 #1
0
 public function testLoadFromCache()
 {
     $this->map->saveToCache();
     $map = new ProjectsMap("http://phabricator.acme.tld");
     $map->loadFromCache();
     $this->assertTrue($map->offsetExists("PHID-PROJ-cztcgpvqr6smnnekotq7"));
 }
예제 #2
0
 /**
  * @covers Nasqueron\Notifications\Phabricator\ProjectsMap::offsetUnset
  */
 public function testOffsetUnset()
 {
     unset($this->map["PHID-PROJ-cztcgpvqr6smnnekotq7"]);
     $this->assertFalse($this->map->offsetExists("PHID-PROJ-cztcgpvqr6smnnekotq7"));
 }