13 lines
241 B
Go
13 lines
241 B
Go
|
package kiss_test
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestCanGetPostTitle(t *testing.T) {
|
||
|
user := getTestUser()
|
||
|
post, _ := user.CreateNewPost("testpost")
|
||
|
result := post.Title()
|
||
|
if result != "testpost" {
|
||
|
t.Error("Wrong Title. Got: " + result)
|
||
|
}
|
||
|
}
|