4edd3ef398
Fixed #35 and related serious issues We now have proper ActivityPub profiles
29 lines
555 B
PHP
Executable File
29 lines
555 B
PHP
Executable File
<?php
|
|
|
|
namespace Tests;
|
|
|
|
trait CreatesApplication
|
|
{
|
|
/**
|
|
* Creates the application.
|
|
*
|
|
* @return todo
|
|
*/
|
|
public static function createApplication()
|
|
{
|
|
if (!defined('INSTALLDIR')) {
|
|
define('INSTALLDIR', __DIR__ . '/../../../');
|
|
}
|
|
if (!defined('GNUSOCIAL')) {
|
|
define('GNUSOCIAL', true);
|
|
}
|
|
if (!defined('STATUSNET')) {
|
|
define('STATUSNET', true); // compatibility
|
|
}
|
|
|
|
require INSTALLDIR . '/lib/common.php';
|
|
|
|
return true;
|
|
}
|
|
}
|