create() public method

public create ( Schema $schema )
$schema Dumplie\Metadata\Schema
Exemplo n.º 1
0
 public function test_delete()
 {
     $uuid = (string) Uuid::uuid4();
     $this->storage->create($this->schema);
     $this->storage->save('test', 'foo', $uuid, ['text' => 'value']);
     $this->storage->delete('test', 'foo', $uuid);
     $this->assertFalse($this->storage->has('test', 'foo', $uuid));
 }