public function test_not_translated_in_scope_works_with_default_locale() { App::setLocale('en'); $notTranslatedCountries = Country::notTranslatedIn()->get(); $this->assertCount(2, $notTranslatedCountries); foreach ($notTranslatedCountries as $notTranslatedCountry) { $this->assertFalse($notTranslatedCountry->hasTranslation('en')); } }