From c85ac39b61875f6b570612739b0244160243d263 Mon Sep 17 00:00:00 2001 From: Sam Light Date: Mon, 31 Mar 2025 00:49:43 +0100 Subject: Manifest testing --- tests/Feature/ManifestTest.php | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'tests/Feature/ManifestTest.php') diff --git a/tests/Feature/ManifestTest.php b/tests/Feature/ManifestTest.php index a9e1108..5a05764 100644 --- a/tests/Feature/ManifestTest.php +++ b/tests/Feature/ManifestTest.php @@ -2,6 +2,32 @@ use Lightscale\LaralightAssets\Manifest; +$path = fn() => public_path('dist/manifest.json'); + it('instantiates', function() { new Manifest('test.json', '/dist'); })->throwsNoExceptions(); + +it('generates dir from file', function() use ($path) { + $manifest = new Manifest($path(), '/dist'); + expect($manifest->getDir()) + ->toBe(public_path('/dist')); +}); + +it('gets file', function() use ($path) { + $manifest = new Manifest($path(), '/dist'); + expect($manifest->getFile('main.css')) + ->toBe('main.testing.css'); +}); + +it('gets url', function() use ($path) { + $manifest = new Manifest($path(), '/dist'); + expect($manifest->getUrl('main.css')) + ->toBe(asset('/dist/main.testing.css')); +}); + +it('gets paths', function() use ($path) { + $manifest = new Manifest($path(), '/dist'); + expect($manifest->getPath('main.css')) + ->toBe(public_path('/dist/main.testing.css')); +}); -- cgit v1.2.3