RSS-Bridge.rss-bridge/tests/Bridges/MastodonBridgeTest.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
428 B
PHP
Raw Normal View History

<?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();
}
}