/**
  * @test
  */
 public function it_does_not_delete_translations_while_force_deleting()
 {
     $country = CountryStrict::find(2);
     $country->forceDelete();
     $after = CountryTranslation::where('country_id', '=', 2)->get();
     $this->assertEquals(0, count($after));
 }