diff options
author | Nitesh Kumar Sinha | 2019-07-02 13:32:26 +0530 |
---|---|---|
committer | GitHub | 2019-07-02 13:32:26 +0530 |
commit | 222f1780ed0f5c3536392df3236284d3a9ab5405 (patch) | |
tree | 582f05cc645901dfeb002ed3fe856e642a79835d /modules/bhavika/legal_forms1/tests/src/Functional | |
parent | 2ab059c88b1353a8e382f302ce9c2b6c2ef018ad (diff) | |
parent | 565af64fc81211897625be2b000a28c910174edb (diff) | |
download | acadmix_distribution-222f1780ed0f5c3536392df3236284d3a9ab5405.tar.gz acadmix_distribution-222f1780ed0f5c3536392df3236284d3a9ab5405.tar.bz2 acadmix_distribution-222f1780ed0f5c3536392df3236284d3a9ab5405.zip |
Merge pull request #7 from Bhavika-keswani/master
Bhavika-Custom modules added
Diffstat (limited to 'modules/bhavika/legal_forms1/tests/src/Functional')
-rw-r--r-- | modules/bhavika/legal_forms1/tests/src/Functional/LoadTest.php | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/modules/bhavika/legal_forms1/tests/src/Functional/LoadTest.php b/modules/bhavika/legal_forms1/tests/src/Functional/LoadTest.php new file mode 100644 index 0000000..530fa33 --- /dev/null +++ b/modules/bhavika/legal_forms1/tests/src/Functional/LoadTest.php @@ -0,0 +1,46 @@ +<?php + +namespace Drupal\Tests\legal_forms1\Functional; + +use Drupal\Core\Url; +use Drupal\Tests\BrowserTestBase; + +/** + * Simple test to ensure that main page loads with module enabled. + * + * @group legal_forms1 + */ +class LoadTest extends BrowserTestBase { + + /** + * Modules to enable. + * + * @var array + */ + public static $modules = ['legal_forms1']; + + /** + * A user with permission to administer site configuration. + * + * @var \Drupal\user\UserInterface + */ + protected $user; + + /** + * {@inheritdoc} + */ + protected function setUp() { + parent::setUp(); + $this->user = $this->drupalCreateUser(['administer site configuration']); + $this->drupalLogin($this->user); + } + + /** + * Tests that the home page loads with a 200 response. + */ + public function testLoad() { + $this->drupalGet(Url::fromRoute('<front>')); + $this->assertSession()->statusCodeEquals(200); + } + +} |