summaryrefslogtreecommitdiff
path: root/modules/esha/placements/tests
diff options
context:
space:
mode:
authorNitesh Kumar Sinha2019-07-02 13:08:31 +0530
committerGitHub2019-07-02 13:08:31 +0530
commit2ab059c88b1353a8e382f302ce9c2b6c2ef018ad (patch)
tree2086c9224072aa7b917da20487b232eb2ef0666e /modules/esha/placements/tests
parent847360bf5ac011771dc013677542ece7b356a528 (diff)
parent141ce8c97abe36f1f8bb06a38623e93563d6c618 (diff)
downloadacadmix_distribution-2ab059c88b1353a8e382f302ce9c2b6c2ef018ad.tar.gz
acadmix_distribution-2ab059c88b1353a8e382f302ce9c2b6c2ef018ad.tar.bz2
acadmix_distribution-2ab059c88b1353a8e382f302ce9c2b6c2ef018ad.zip
Merge pull request #8 from eshadutta9/master
Esha "custom modules added"
Diffstat (limited to 'modules/esha/placements/tests')
-rw-r--r--modules/esha/placements/tests/src/Functional/LoadTest.php46
1 files changed, 46 insertions, 0 deletions
diff --git a/modules/esha/placements/tests/src/Functional/LoadTest.php b/modules/esha/placements/tests/src/Functional/LoadTest.php
new file mode 100644
index 0000000..fd19fb6
--- /dev/null
+++ b/modules/esha/placements/tests/src/Functional/LoadTest.php
@@ -0,0 +1,46 @@
+<?php
+
+namespace Drupal\Tests\placements\Functional;
+
+use Drupal\Core\Url;
+use Drupal\Tests\BrowserTestBase;
+
+/**
+ * Simple test to ensure that main page loads with module enabled.
+ *
+ * @group placements
+ */
+class LoadTest extends BrowserTestBase {
+
+ /**
+ * Modules to enable.
+ *
+ * @var array
+ */
+ public static $modules = ['placements'];
+
+ /**
+ * 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);
+ }
+
+}