summaryrefslogtreecommitdiff
path: root/modules/kalpesh/recruiters/tests/src
diff options
context:
space:
mode:
authoroskkw2019-07-03 17:29:48 +0530
committeroskkw2019-07-03 17:29:48 +0530
commit973ac75b1994043360b8e62cd0c83461310ee728 (patch)
tree445a92ce631b794ed9f501a1602a144052e29068 /modules/kalpesh/recruiters/tests/src
parent58dbf8fcb04c01c338b9e346b8266690c8b92a2f (diff)
downloadacadmix_distribution-973ac75b1994043360b8e62cd0c83461310ee728.tar.gz
acadmix_distribution-973ac75b1994043360b8e62cd0c83461310ee728.tar.bz2
acadmix_distribution-973ac75b1994043360b8e62cd0c83461310ee728.zip
custom module added
Diffstat (limited to 'modules/kalpesh/recruiters/tests/src')
-rw-r--r--modules/kalpesh/recruiters/tests/src/Functional/LoadTest.php46
1 files changed, 46 insertions, 0 deletions
diff --git a/modules/kalpesh/recruiters/tests/src/Functional/LoadTest.php b/modules/kalpesh/recruiters/tests/src/Functional/LoadTest.php
new file mode 100644
index 0000000..9764cfb
--- /dev/null
+++ b/modules/kalpesh/recruiters/tests/src/Functional/LoadTest.php
@@ -0,0 +1,46 @@
+<?php
+
+namespace Drupal\Tests\recruiters\Functional;
+
+use Drupal\Core\Url;
+use Drupal\Tests\BrowserTestBase;
+
+/**
+ * Simple test to ensure that main page loads with module enabled.
+ *
+ * @group recruiters
+ */
+class LoadTest extends BrowserTestBase {
+
+ /**
+ * Modules to enable.
+ *
+ * @var array
+ */
+ public static $modules = ['recruiters'];
+
+ /**
+ * 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);
+ }
+
+}