jonnybarnes.uk/tests/Feature/BridgyPosseTest.php

17 lines
327 B
PHP
Raw Normal View History

<?php
namespace Tests\Feature;
use Tests\TestCase;
class BridgyPosseTest extends TestCase
{
public function test_bridgy_twitter_content()
{
$response = $this->get('/notes/4');
$html = $response->content();
$this->assertTrue(is_string(mb_stristr($html, 'p-bridgy-twitter-content')));
}
}