public function ContentTranslationStandardFieldsTest::testRevisionLogNotTranslatable in Drupal 9
Same name and namespace in other branches
- 8 core/modules/content_translation/tests/src/Functional/ContentTranslationStandardFieldsTest.php \Drupal\Tests\content_translation\Functional\ContentTranslationStandardFieldsTest::testRevisionLogNotTranslatable()
- 10 core/modules/content_translation/tests/src/Functional/ContentTranslationStandardFieldsTest.php \Drupal\Tests\content_translation\Functional\ContentTranslationStandardFieldsTest::testRevisionLogNotTranslatable()
Tests that revision_log is not translatable.
File
- core/
modules/ content_translation/ tests/ src/ Functional/ ContentTranslationStandardFieldsTest.php, line 78
Class
- ContentTranslationStandardFieldsTest
- Tests the Content translation settings using the standard profile.
Namespace
Drupal\Tests\content_translation\FunctionalCode
public function testRevisionLogNotTranslatable() {
$path = 'admin/config/regional/content-language';
$this
->drupalGet($path);
$this
->assertSession()
->fieldNotExists('edit-settings-node-article-fields-revision-log');
}