Exemplo n.º 1
0
 public function testTemporary()
 {
     $table = new CachedTable($this->schema, 'newTable');
     $this->assertFalse($table->temporary());
     $tempTable = TempTable::create($this->schema, 'blah2', self::$columns);
     $this->assertTrue($tempTable->temporary());
 }