You are here

public function ContentTranslationStandardFieldsTest::testRevisionLogNotTranslatable in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/content_translation/tests/src/Functional/ContentTranslationStandardFieldsTest.php \Drupal\Tests\content_translation\Functional\ContentTranslationStandardFieldsTest::testRevisionLogNotTranslatable()
  2. 10 core/modules/content_translation/tests/src/Functional/ContentTranslationStandardFieldsTest.php \Drupal\Tests\content_translation\Functional\ContentTranslationStandardFieldsTest::testRevisionLogNotTranslatable()

Test 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\Functional

Code

public function testRevisionLogNotTranslatable() {
  $path = 'admin/config/regional/content-language';
  $this
    ->drupalGet($path);
  $this
    ->assertNoFieldByXPath("//input[@id='edit-settings-node-article-fields-revision-log']");
}