Commit e9af894a authored by Dave Marshall's avatar Dave Marshall

Added simple smoke test for default session provider setup

parent a34077d8
......@@ -30,6 +30,11 @@ class SessionServiceProviderTest extends \PHPUnit_Framework_TestCase
$app->register(new SessionServiceProvider());
/**
* Smoke test
*/
$defaultStorage = $app['session.storage'];
$app['session.storage'] = $app->share(function () use ($app) {
return new MockArraySessionStorage();
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment