summaryrefslogtreecommitdiff
path: root/tests/papo_test.go
blob: ef424fb3cc4e258536c61f779be276d333242f50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package papo_test

import (
	"testing"

	"euandre.org/papo/src"
)


func TestConvert(t *testing.T) {
	if papo.Hello("World") != "Hi, World.  Welcome!" {
		t.Fail()
	}
}