commit 63912e4c20fc9b3d49670a0f547137d59aaa2ef4 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Oct 12 19:18:21 2018 +0100 Remove facebook syndication code
16 lines
327 B
PHP
16 lines
327 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Tests\TestCase;
|
|
|
|
class BridgyPosseTest extends TestCase
|
|
{
|
|
public function test_bridgy_twitter_content()
|
|
{
|
|
$response = $this->get('/notes/E');
|
|
|
|
$html = $response->content();
|
|
$this->assertTrue(is_string(mb_stristr($html, 'p-bridgy-twitter-content')));
|
|
}
|
|
}
|