You are here

protected function oa_coreBaseWebTest::createOaSpace in Open Atrium Core 7.2

1 call to oa_coreBaseWebTest::createOaSpace()
oa_coreBaseWebTest::createOaSpaceAndUsers in tests/oa_coreBase.test

File

tests/oa_coreBase.test, line 26
Provides a base unit test class.

Class

oa_coreBaseWebTest
Base class for testing openatrium web interaction.

Code

protected function createOaSpace($node_info = array()) {
  $node_info += array(
    'type' => 'oa_space',
  );
  return $this
    ->drupalCreateNode($node_info);
}