mirror of
https://github.com/Luzifer/repo-template.git
synced 2024-11-10 16:40:04 +00:00
21 lines
316 B
Go
21 lines
316 B
Go
|
package pongo2
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
. "gopkg.in/check.v1"
|
||
|
)
|
||
|
|
||
|
// Hook up gocheck into the "go test" runner.
|
||
|
|
||
|
func TestIssues(t *testing.T) { TestingT(t) }
|
||
|
|
||
|
type IssueTestSuite struct{}
|
||
|
|
||
|
var _ = Suite(&IssueTestSuite{})
|
||
|
|
||
|
func (s *TestSuite) TestIssues(c *C) {
|
||
|
// Add a test for any issue
|
||
|
c.Check(42, Equals, 42)
|
||
|
}
|