blessing-skin-server/tests/ServicesTest/WebpackTest.php
Pig Fang 372c7768d0
Apply fixes from StyleCI (#93)
[ci skip] [skip ci]
2019-08-15 23:27:29 +08:00

17 lines
328 B
PHP

<?php
namespace Tests;
use File;
class WebpackTest extends TestCase
{
public function testManifest()
{
File::shouldReceive('exists')->andReturn(true);
File::shouldReceive('get')->andReturn(json_encode(['a' => 'b']));
$key = 'a';
$this->assertEquals('b', app('webpack')->$key);
}
}