github.com/markusbkk/elvish@v0.0.0-20231204143114-91dc52438621/pkg/mods/epm/epm_test.go (about) 1 package epm_test 2 3 import ( 4 "testing" 5 6 . "github.com/markusbkk/elvish/pkg/eval/evaltest" 7 "github.com/markusbkk/elvish/pkg/mods" 8 ) 9 10 func TestEPM(t *testing.T) { 11 // A smoke test to ensure that the epm module has no errors. 12 13 TestWithSetup(t, mods.AddTo, 14 That("use epm").DoesNothing(), 15 ) 16 }