DsnTest.php 273 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php

class DsnTest extends TestCase
{
    public function test_dsn_works()
    {
        $this->assertInstanceOf(\Illuminate\Database\Eloquent\Collection::class, DsnAddress::all());
    }
}

class DsnAddress extends Address
{
    protected $connection = 'dsn_mongodb';
}