/** @test */
 public function it_should_throw_an_exception_if_the_page_corresponding_to_the_url_does_not_exists_in_the_requested_language()
 {
     $this->expectException(ModelNotFoundException::class);
     $root = Page::create();
     $root->slugs()->create(['lang_code' => $this->lang, 'name' => 'root page']);
     $child = $root->children()->create([]);
     $child->slugs()->create(['lang_code' => $this->lang, 'name' => 'child page']);
     $page = Page::match('/root-page/child-page', 'it');
 }