diff options
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() + } +} |
