Fix for Fix for A more awesome solution

  1. <?php
  2.  
  3. class MyAwesomeTestCase extends DrupalWebTestCase {
  4.   function testAwesomeness() {
  5.     $awesome = $this->drupalGet('awesome_page');
  6.     $this->assertIdentical($awesome, 'cwgordon7');
  7.   }
  8. }
  9.  
  10. function MyAwesomeTestCase_menu() {
  11.   // do cool stuff.
  12. }