mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 23:49:56 +00:00
Install Emacs and copy the desktop .emacs.d config so the editor setup is managed with the rest of desktop dotfiles. Add vterm/build/debug dependencies plus C/C++ and Go tooling needed by the configured workflow.
24 lines
538 B
Plaintext
24 lines
538 B
Plaintext
func Test$0 {
|
|
tests := []struct {
|
|
name string
|
|
req string
|
|
expected string
|
|
}{
|
|
{
|
|
name: "happy path",
|
|
req: "answer to life, the universe and everything"
|
|
expected: "42"
|
|
}
|
|
}
|
|
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
t.Parallel()
|
|
actual := foo(t, tt.req)
|
|
assertEquals(t, tt.want, expected)
|
|
})
|
|
|
|
}
|
|
}
|