/**
  * @test
  */
 public function it_drops_snapshot_table()
 {
     $schema = $this->prophesize(Schema::class);
     $schema->dropTable('table_name');
     SnapshotStoreSchema::drop($schema->reveal(), 'table_name');
 }