mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-10 17:08:47 +00:00
18 lines
428 B
PHP
18 lines
428 B
PHP
<?php
|
|
|
|
namespace RssBridge\Tests\Bridges;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class MastodonBridgeTest extends TestCase
|
|
{
|
|
public function test()
|
|
{
|
|
\Configuration::loadConfiguration(['cache' => ['type' => 'null']]);
|
|
$b = new \MastodonBridge();
|
|
// https://bird.makeup/users/asmongold/remote_follow
|
|
$b->setDatas(['canusername' => '@asmongold@bird.makeup']);
|
|
$b->collectData();
|
|
}
|
|
}
|