You are here

function SimpleTestOtherInstallationProfileModuleTestsTestCase::testOtherInstallationProfile in Drupal 7

Tests that tests located in another installation profile do not appear.

File

modules/simpletest/simpletest.test, line 706
Tests for simpletest.module.

Class

SimpleTestOtherInstallationProfileModuleTestsTestCase
Verifies that tests in other installation profiles are not found.

Code

function testOtherInstallationProfile() {
  $this
    ->drupalGet('admin/config/development/testing');
  $this
    ->assertNoText('Installation profile module tests helper');
}