mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-12 03:51:10 +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
|
||
|
}
|