This significantly improves handling by reducing file size. This is also part of an effort of getting this to build on nix itself.
28 lines
893 B
Go
28 lines
893 B
Go
package nix_test
|
|
|
|
import _ "embed"
|
|
|
|
// github:getchoo/borealis#glados
|
|
|
|
var (
|
|
getchooGladosOut = string(sampleMustGunzip(getchooGladosOutGzip))
|
|
//go:embed testdata/getchoo_glados.gz
|
|
getchooGladosOutGzip []byte
|
|
|
|
getchooGladosInstantiated = sampleSplitPaths(sampleMustGunzip(getchooGladosInstantiatedGzip))
|
|
//go:embed testdata/instantiated/getchoo_glados.gz
|
|
getchooGladosInstantiatedGzip []byte
|
|
|
|
getchooGladosShow = sampleMustGunzip(getchooGladosShowGzip)
|
|
//go:embed testdata/derivation/show_getchoo_glados.json.gz
|
|
getchooGladosShowGzip []byte
|
|
|
|
getchooGladosCollective = sampleSplitPaths(sampleMustGunzip(getchooGladosCollectiveGzip))
|
|
//go:embed testdata/derivation/collect_getchoo_glados.gz
|
|
getchooGladosCollectiveGzip []byte
|
|
|
|
getchooGladosStdin = string(sampleMustGunzip(getchooGladosStdinGzip))
|
|
//go:embed testdata/format/stdin_getchoo_glados.gz
|
|
getchooGladosStdinGzip []byte
|
|
)
|