photoprism/pkg/capture/time_test.go

17 lines
291 B
Go

package capture
import (
"fmt"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestTime(t *testing.T) {
start := time.Now()
time.Sleep(1 * time.Millisecond)
result := Time(start, fmt.Sprintf("%s", "Successful test"))
assert.Contains(t, result, "Successful test [")
}