diff options
| author | EuAndreh <eu@euandre.org> | 2024-03-25 06:42:35 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2024-03-25 06:44:18 -0300 |
| commit | 077b81b2bd2c0d418635b265b35f582d68cec16a (patch) | |
| tree | ed3c928ea3b1d5df539b6e1902ab418caa937672 /tests/papo_test.go | |
| parent | src/hero.mjs: Retire code (diff) | |
| download | papod-077b81b2bd2c0d418635b265b35f582d68cec16a.tar.gz papod-077b81b2bd2c0d418635b265b35f582d68cec16a.tar.xz | |
Node.js -> Go
Diffstat (limited to 'tests/papo_test.go')
| -rw-r--r-- | tests/papo_test.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/papo_test.go b/tests/papo_test.go new file mode 100644 index 0000000..ef424fb --- /dev/null +++ b/tests/papo_test.go @@ -0,0 +1,14 @@ +package papo_test + +import ( + "testing" + + "euandre.org/papo/src" +) + + +func TestConvert(t *testing.T) { + if papo.Hello("World") != "Hi, World. Welcome!" { + t.Fail() + } +} |
