You've already forked goreleaser
mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-07-05 00:59:04 +02:00
16 lines
214 B
Go
16 lines
214 B
Go
![]() |
package snapshot
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestStringer(t *testing.T) {
|
||
|
assert.NotEmpty(t, Pipe{}.String())
|
||
|
}
|
||
|
|
||
|
func TestDefault(t *testing.T) {
|
||
|
// TODO: implement this
|
||
|
}
|