diff options
author | Mansimran7 | 2019-07-02 12:16:59 +0530 |
---|---|---|
committer | Mansimran7 | 2019-07-02 12:16:59 +0530 |
commit | 4e585c030ed6b5ea73b77a696a78f8855d9a26d8 (patch) | |
tree | a9dd98d2648c35aa2357eb7bc473469f6cc8d417 /modules/mansimran/startups/tests/src/Functional/LoadTest.php | |
parent | 3ad1b8d590d7d11d83e8c923970690900dc31f70 (diff) | |
download | acadmix_distribution-4e585c030ed6b5ea73b77a696a78f8855d9a26d8.tar.gz acadmix_distribution-4e585c030ed6b5ea73b77a696a78f8855d9a26d8.tar.bz2 acadmix_distribution-4e585c030ed6b5ea73b77a696a78f8855d9a26d8.zip |
pushing all custom modules
Diffstat (limited to 'modules/mansimran/startups/tests/src/Functional/LoadTest.php')
-rw-r--r-- | modules/mansimran/startups/tests/src/Functional/LoadTest.php | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/modules/mansimran/startups/tests/src/Functional/LoadTest.php b/modules/mansimran/startups/tests/src/Functional/LoadTest.php new file mode 100644 index 0000000..949df7a --- /dev/null +++ b/modules/mansimran/startups/tests/src/Functional/LoadTest.php @@ -0,0 +1,46 @@ +<?php + +namespace Drupal\Tests\startups\Functional; + +use Drupal\Core\Url; +use Drupal\Tests\BrowserTestBase; + +/** + * Simple test to ensure that main page loads with module enabled. + * + * @group startups + */ +class LoadTest extends BrowserTestBase { + + /** + * Modules to enable. + * + * @var array + */ + public static $modules = ['startups']; + + /** + * 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); + } + +} |