27 lines
741 B
Go
27 lines
741 B
Go
package nixbuild_test
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
// git+https://tangled.sh/@pluie.me/flake#pappardelle
|
|
|
|
var (
|
|
//go:embed testdata/pluiedev_pappardelle
|
|
pluiedevPappardelleOut string
|
|
|
|
pluiedevPappardelleInstantiated = sampleSplitPaths(pluiedevPappardelleInstantiatedRaw)
|
|
//go:embed testdata/instantiated/pluiedev_pappardelle
|
|
pluiedevPappardelleInstantiatedRaw string
|
|
|
|
//go:embed testdata/derivation/show_pluiedev_pappardelle.json
|
|
pluiedevPappardelleShow []byte
|
|
|
|
pluiedevPappardelleCollective = sampleSplitPaths(pluiedevPappardelleCollectiveRaw)
|
|
//go:embed testdata/derivation/collect_pluiedev_pappardelle
|
|
pluiedevPappardelleCollectiveRaw string
|
|
|
|
//go:embed testdata/format/stdin_pluiedev_pappardelle
|
|
pluiedevPappardelleStdin string
|
|
)
|