mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-19 08:21:01 +00:00
25 lines
444 B
Go
25 lines
444 B
Go
|
package bolt
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/franela/goblin"
|
||
|
)
|
||
|
|
||
|
func TestRepo(t *testing.T) {
|
||
|
g := Goblin(t)
|
||
|
g.Describe("Repos", func() {
|
||
|
|
||
|
g.It("Should find by name")
|
||
|
g.It("Should find params")
|
||
|
g.It("Should find keys")
|
||
|
g.It("Should delete")
|
||
|
g.It("Should insert")
|
||
|
g.It("Should not insert if exists")
|
||
|
g.It("Should insert params")
|
||
|
g.It("Should update params")
|
||
|
g.It("Should insert keys")
|
||
|
g.It("Should update keys")
|
||
|
})
|
||
|
}
|