<?php

// $Id: domain.test,v 1.2 2008/03/30 17:51:47 agentken Exp $

/**
 * @file
 * Simpletest for Domain Access
 */
class DomainCreateTest extends DrupalTestCase {

  function get_info() {
    return array(
      'name' => t('Domain creation'),
      'desc' => t('Create domain record and verify its consistency in the database.'),
      'group' => t('Domain Access'),
    );
  }

  function testCreateDomain() {
    $domain = $this->randomName();
  }

}