Created
July 5, 2012 20:27
-
-
Save e2thex/3056240 to your computer and use it in GitHub Desktop.
web test not working
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //class SPSDrupalVariableControllerUnitTest extends DrupalUnitTestCase { | |
| class SPSDrupalVariableControllerUnitTest extends DrupalWebTestCase { | |
| static function getInfo() { | |
| return array( | |
| 'name' => 'SPS DrupalVariableController Unit Tests', | |
| 'description' => 'Test the public interface to the DrupalVariableController object', | |
| 'group' => 'SPS', | |
| ); | |
| } | |
| /** | |
| * override setUp | |
| * | |
| * we need the Variable module | |
| */ | |
| public function setUp() { | |
| parent::setUp('sps', 'xautoload'); | |
| //parent::setUp(array('variable', 'xautoload', 'sps', 'sps_test')); | |
| } | |
| public function testTestStorageController() { | |
| print_r(array(module_exists("xautoload"), module_exists('variable'))); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment