Create uptime_test.go

This commit is contained in:
Oskar 2021-10-24 14:34:50 +02:00 committed by GitHub
parent c49137a890
commit 83442d44bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

10
common/uptime_test.go Normal file
View File

@ -0,0 +1,10 @@
package common
import (
"testing"
"time"
)
func TestCheckUptime(T *testing.T) {
Uptime(time.Date(2016, 6, 2, 1, 1, 1, 1, time.UTC))
}