tools: Add mod2spec.sh, turns util.example into spec/util_example_spec.lua

Useful for opening a module and its tests at the same, can be awkward to
auto-complete sometimes.

	sensible-editor util/example.lua $(./tools/mod2spec.sh util.example)
This commit is contained in:
Kim Alvefur 2023-07-16 18:33:53 +02:00
parent d21e26882c
commit a906513d32

4
tools/mod2spec.lua Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
set -eu
echo "spec/${1//./_}_spec.lua"