public function test_it_returns_if_attribute_is_translated()
 {
     $country = new Country();
     $this->assertTrue($country->isTranslationAttribute('name'));
     $this->assertFalse($country->isTranslationAttribute('some-field'));
 }