This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//...... | |
class CreatePageTest extends TestCase | |
//..... | |
/** @test */ | |
function meta_description_is_required() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Tests; | |
use Illuminate\Support\Facades\DB; | |
trait DetectRepeatedQueries | |
{ | |
public function enableQueryLog() | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Usage: | |
//$token = factory(etc...); | |
$this->open(new TokenMail($token)) | |
->seeLink($token->url, $token->url); |