You are here

public function RabbitHoleBehaviorSettingsFormTestBase::testExistingEntitySettingsLoad in Rabbit Hole 2.x

Same name and namespace in other branches
  1. 8 tests/src/Functional/RabbitHoleBehaviorSettingsFormTestBase.php \Drupal\Tests\rabbit_hole\Functional\RabbitHoleBehaviorSettingsFormTestBase::testExistingEntitySettingsLoad()

Test that entity form correctly loads previously saved behavior settings.

File

tests/src/Functional/RabbitHoleBehaviorSettingsFormTestBase.php, line 250

Class

RabbitHoleBehaviorSettingsFormTestBase
Base class for the Rabbit Hole form additions tests.

Namespace

Drupal\Tests\rabbit_hole\Functional

Code

public function testExistingEntitySettingsLoad() {
  $this
    ->createEntityBundle();
  $action = 'access_denied';
  $entity_id = $this
    ->createEntity($action);
  $this
    ->loadEditEntityForm($entity_id);
  $this
    ->assertSession()
    ->checkboxChecked($this
    ->getOptionId($action));
}