mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-07-15 16:34:39 +02: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();
|
||
|
}
|
||
|
}
|