File: package_test.go

package info (click to toggle)
golang-github-juju-clock 1.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 176 kB
  • sloc: makefile: 18
file content (20 lines) | stat: -rw-r--r-- 304 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2022 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.

package testclock_test

import (
	gotesting "testing"
	"time"

	gc "gopkg.in/check.v1"
)

func TestAll(t *gotesting.T) {
	gc.TestingT(t)
}

const (
	shortWait = 50 * time.Millisecond
	longWait  = time.Second
)