mirror of
https://github.com/halverneus/static-file-server.git
synced 2025-02-05 15:55:30 +00:00
10 lines
152 B
Go
10 lines
152 B
Go
|
package version
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestVersion(t *testing.T) {
|
||
|
if err := Run(); nil != err {
|
||
|
t.Errorf("While running version got %v", err)
|
||
|
}
|
||
|
}
|