mirror of
https://codeberg.org/icewind/flakelight-php.git
synced 2026-06-03 18:04:10 +02:00
phpunit app
This commit is contained in:
parent
a59a517f66
commit
d143b04ec3
4 changed files with 84 additions and 2 deletions
12
apps/phpunit.nix
Normal file
12
apps/phpunit.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
phpunit,
|
||||
testDependencies,
|
||||
writeShellApplication,
|
||||
}:
|
||||
writeShellApplication {
|
||||
name = "phpunit";
|
||||
runtimeInputs = [phpunit] ++ testDependencies;
|
||||
text = ''
|
||||
phpunit "$@"
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue