This significantly improves handling by reducing file size. This is also part of an effort of getting this to build on nix itself.
30 lines
1.0 KiB
Go
30 lines
1.0 KiB
Go
package nix_test
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
// git+https://tangled.sh/@pluie.me/flake#pappardelle
|
|
|
|
var (
|
|
pluiedevPappardelleOut = string(sampleMustGunzip(pluiedevPappardelleGzip))
|
|
//go:embed testdata/pluiedev_pappardelle.gz
|
|
pluiedevPappardelleGzip []byte
|
|
|
|
pluiedevPappardelleInstantiated = sampleSplitPaths(sampleMustGunzip(pluiedevPappardelleInstantiatedGzip))
|
|
//go:embed testdata/instantiated/pluiedev_pappardelle.gz
|
|
pluiedevPappardelleInstantiatedGzip []byte
|
|
|
|
pluiedevPappardelleShow = sampleMustGunzip(pluiedevPappardelleShowGzip)
|
|
//go:embed testdata/derivation/show_pluiedev_pappardelle.json.gz
|
|
pluiedevPappardelleShowGzip []byte
|
|
|
|
pluiedevPappardelleCollective = sampleSplitPaths(sampleMustGunzip(pluiedevPappardelleCollectiveGzip))
|
|
//go:embed testdata/derivation/collect_pluiedev_pappardelle.gz
|
|
pluiedevPappardelleCollectiveGzip []byte
|
|
|
|
pluiedevPappardelleStdin = string(sampleMustGunzip(pluiedevPappardelleStdinGzip))
|
|
//go:embed testdata/format/stdin_pluiedev_pappardelle.gz
|
|
pluiedevPappardelleStdinGzip []byte
|
|
)
|