| 1 js_example.test | public JsExampleTestCase::testJsExampleMenus() | 
Tests the menu paths defined in js_example module.
File
- modules/examples/ js_example/ tests/ js_example.test, line 24 
- Test file for js_example module.
Class
- JsExampleTestCase
- Default test case for the js_example module.
Code
public function testJsExampleMenus() {
  $paths = array(
    'js_example/weights',
    'js_example/accordion',
  );
  foreach ($paths as $path) {
    $this->backdropGet($path);
    $this->assertResponse(200, '200 response for path: ' . $path);
  }
}
