github.com/insionng/yougam@v0.0.0-20170714101924-2bc18d833463/libraries/flosch/pongo2.v3/pongo2_issues_test.go (about)

     1  package pongo2
     2  
     3  import (
     4  	"testing"
     5  
     6  	. "github.com/insionng/yougam/libraries/check.v1"
     7  )
     8  
     9  // Hook up gocheck into the "go test" runner.
    10  
    11  func TestIssues(t *testing.T) { TestingT(t) }
    12  
    13  type IssueTestSuite struct{}
    14  
    15  var _ = Suite(&IssueTestSuite{})
    16  
    17  func (s *TestSuite) TestIssues(c *C) {
    18  	// Add a test for any issue
    19  	c.Check(42, Equals, 42)
    20  }