123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- /**
- * This file is part of cocur/slugify.
- *
- * (c) Florian Eckerstorfer <florian@eckerstorfer.co>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Cocur\Slugify\Bridge\Laravel;
- use Cocur\Slugify\Bridge\Laravel\SlugifyServiceProvider;
- use Illuminate\Foundation\Application;
- /**
- * SlugifyServiceProviderTest
- *
- * @category test
- * @package cocur/slugify
- * @subpackage bridge
- * @author Florian Eckerstorfer <florian@eckerstorfer.co>
- * @author Colin Viebrock
- * @copyright 2012-2014 Florian Eckerstorfer
- * @license http://www.opensource.org/licenses/MIT The MIT License
- * @group unit
- */
- class SlugifyServiceProviderTest extends \PHPUnit_Framework_TestCase
- {
- /** @var Application */
- private $app;
- /** @var SlugifyServiceProvider */
- private $provider;
- public function setUp()
- {
- $this->app = new Application();
- $this->provider = new SlugifyServiceProvider($this->app);
- }
- /**
- * @test
- * @covers Cocur\Slugify\Bridge\Laravel\SlugifyServiceProvider::register()
- */
- public function registerRegistersTheServiceProvider()
- {
- $this->provider->register();
- // the service provider is deferred, so this forces it to load
- $this->app->make('slugify');
- $this->assertArrayHasKey('slugify', $this->app);
- $this->assertInstanceOf('Cocur\Slugify\Slugify', $this->app['slugify']);
- }
- /**
- * @test
- * @covers Cocur\Slugify\Bridge\Laravel\SlugifyServiceProvider::provides()
- */
- public function containsReturnsTheNameOfThProvider()
- {
- $this->assertContains('slugify', $this->provider->provides());
- }
- }
|