Beispiel #1
0
 public function testStored()
 {
     $fixture = ['facebook' => 'my_token', 'vkontakte' => 'second_token'];
     $this->factoryColumn(self::SecondLogin);
     $this->column->setValue($fixture);
     $this->column->onUpdate(new \Extasy\ORM\QueryBuilder('select'));
     //
     $this->factoryColumn(self::SecondLogin);
     $this->column->onAfterSelect([]);
     //
     $this->assertEquals($this->column->getValue(), $fixture);
 }