You've already forked woodpecker
mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-11-23 21:44:44 +02:00
20 lines
300 B
Go
20 lines
300 B
Go
|
|
package bolt
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
. "github.com/franela/goblin"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestToken(t *testing.T) {
|
||
|
|
g := Goblin(t)
|
||
|
|
g.Describe("Tokens", func() {
|
||
|
|
|
||
|
|
g.It("Should find by sha")
|
||
|
|
g.It("Should list for user")
|
||
|
|
g.It("Should delete")
|
||
|
|
g.It("Should insert")
|
||
|
|
g.It("Should not insert if exists")
|
||
|
|
})
|
||
|
|
}
|