mirror of
https://github.com/goreleaser/nfpm
synced 2024-11-18 19:04:07 +01:00
12 lines
246 B
Go
12 lines
246 B
Go
package acceptance
|
|
|
|
import "testing"
|
|
|
|
func TestSimpleRPM(t *testing.T) {
|
|
accept(t, "simple_rpm", "simple.yaml", "rpm", "rpm.dockerfile")
|
|
}
|
|
|
|
func TestComplexRPM(t *testing.T) {
|
|
accept(t, "complex_rpm", "complex.yaml", "rpm", "rpm.dockerfile")
|
|
}
|