You are here

hosting_server.test in Hosting 7.4

Same filename and directory in other branches
  1. 7.3 server/hosting_server.test

File

server/hosting_server.test
View source
<?php

/**
 * @file
 * Tests for hosting_server.module.
 */
class HostingServerTestCase extends HostingTestCase {
  function testServer() {
    $web_user = $this
      ->drupalCreateUser(array(
      // Drupal core
      'access content',
      //'access all views',

      // Clients
      'view server',
      'create server',
      'edit server',
      'delete server',
    ));

    // Make the user part of the admin client.
    hosting_client_user_form_submit(array(
      'hosting_client' => 1,
    ), $web_user);
    $this
      ->drupalLogin($web_user);
    $this
      ->drupalGet('hosting/servers');
  }
  public static function getInfo() {
    return array(
      'name' => 'Hosting Server',
      'description' => 'Tests.',
      'group' => 'Hosting',
    );
  }

}

Classes

Namesort descending Description
HostingServerTestCase @file Tests for hosting_server.module.