diff options
author | Nitesh Kumar Sinha | 2019-08-19 11:14:26 +0530 |
---|---|---|
committer | GitHub | 2019-08-19 11:14:26 +0530 |
commit | f8d43f51937aae5240b2885108fd08efab768155 (patch) | |
tree | 998c1d749bf3533d24a4799b53c79413dfce7eba /modules/esha/achievements/tests/src/Functional | |
parent | 58dbf8fcb04c01c338b9e346b8266690c8b92a2f (diff) | |
parent | 67eeae320422623bc2873b2c00afb8b29ec6160e (diff) | |
download | acadmix_distribution-master.tar.gz acadmix_distribution-master.tar.bz2 acadmix_distribution-master.zip |
merge with Stage
Diffstat (limited to 'modules/esha/achievements/tests/src/Functional')
-rw-r--r-- | modules/esha/achievements/tests/src/Functional/LoadTest.php | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/modules/esha/achievements/tests/src/Functional/LoadTest.php b/modules/esha/achievements/tests/src/Functional/LoadTest.php deleted file mode 100644 index 0d54e64..0000000 --- a/modules/esha/achievements/tests/src/Functional/LoadTest.php +++ /dev/null @@ -1,46 +0,0 @@ -<?php - -namespace Drupal\Tests\achievements\Functional; - -use Drupal\Core\Url; -use Drupal\Tests\BrowserTestBase; - -/** - * Simple test to ensure that main page loads with module enabled. - * - * @group achievements - */ -class LoadTest extends BrowserTestBase { - - /** - * Modules to enable. - * - * @var array - */ - public static $modules = ['achievements']; - - /** - * 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); - } - -} |