mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
don't fire a newly created timer
This commit is contained in:
parent
1045c7dc94
commit
072b84870c
2 changed files with 10 additions and 2 deletions
|
@ -10,6 +10,11 @@ import (
|
|||
var _ = Describe("Timer", func() {
|
||||
const d = 10 * time.Millisecond
|
||||
|
||||
It("doesn't fire a newly created timer", func() {
|
||||
t := NewTimer()
|
||||
Consistently(t.Chan()).ShouldNot(Receive())
|
||||
})
|
||||
|
||||
It("works", func() {
|
||||
t := NewTimer()
|
||||
t.Reset(time.Now().Add(d))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue