summaryrefslogtreecommitdiff
path: root/modules/esha/achievements/tests/src
diff options
context:
space:
mode:
authorEsha2019-07-03 16:04:14 +0530
committerEsha2019-07-03 16:04:14 +0530
commitba88b16a779c8be43a8e6db6c501b8548d962fa9 (patch)
treee48dbc936e52541ec3189140cf6b6ba0fa79c12e /modules/esha/achievements/tests/src
parent141ce8c97abe36f1f8bb06a38623e93563d6c618 (diff)
downloadacadmix_distribution-ba88b16a779c8be43a8e6db6c501b8548d962fa9.tar.gz
acadmix_distribution-ba88b16a779c8be43a8e6db6c501b8548d962fa9.tar.bz2
acadmix_distribution-ba88b16a779c8be43a8e6db6c501b8548d962fa9.zip
changes made and views added
Diffstat (limited to 'modules/esha/achievements/tests/src')
-rw-r--r--modules/esha/achievements/tests/src/Functional/LoadTest.php46
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);
- }
-
-}