2017-09-21 21:43:27 +02:00
|
|
|
// Copyright (C) 2017 ScyllaDB
|
|
|
|
|
// Use of this source code is governed by a ALv2-style
|
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
2017-08-01 12:44:10 +02:00
|
|
|
package qb
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
"time"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestTTL(t *testing.T) {
|
|
|
|
|
if TTL(time.Second*86400) != 86400 {
|
|
|
|
|
t.Fatal("wrong ttl")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestTimestamp(t *testing.T) {
|
|
|
|
|
if Timestamp(time.Unix(0, 0).Add(time.Microsecond*123456789)) != 123456789 {
|
|
|
|
|
t.Fatal("wrong timestamp")
|
|
|
|
|
}
|
|
|
|
|
}
|