mirror of
https://gitlab.com/commento/commento.git
synced 2025-04-28 18:40:29 -04:00
15 lines
250 B
Go
15 lines
250 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestCommenterSessionNewBasics(t *testing.T) {
|
|
failTestOnError(t, setupTestEnv())
|
|
|
|
if _, err := commenterSessionNew(); err != nil {
|
|
t.Errorf("unexpected error creating new session: %v", err)
|
|
return
|
|
}
|
|
}
|