Example #1
0
 public function testEditFieldToStringWithRecords()
 {
     // TODO possible other bug found here
     $this->markTestSkipped();
     $this->tdb->add("test", ["name" => "tim"]);
     $this->tdb->editField("test", "name", ["email", "string", 50]);
     $record = $this->tdb->get("test", 1);
     // TODO check record has new field and old one is removed
 }