File: docker_test.go

package info (click to toggle)
golang-github-apparentlymart-go-shquot 0.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 128 kB
  • sloc: makefile: 2
file content (24 lines) | stat: -rw-r--r-- 326 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package shquot

import (
	"testing"
)

func TestDockerfile(t *testing.T) {
	tests := []qTest{
		{
			[]string{},
			`[]`,
		},
		{
			[]string{"tar", "zxvf", "foo.tar"},
			`["tar","zxvf","foo.tar"]`,
		},
		{
			[]string{"echo", `hello, "world"`},
			`["echo","hello, \"world\""]`,
		},
	}

	runTests(t, tests, Dockerfile)
}