modified the go.doc in suite package.

pull/226/head
praveen shukla 2015-10-20 10:51:47 +05:30
parent be704a5c57
commit 6e25351910
1 changed files with 2 additions and 2 deletions

View File

@ -53,8 +53,8 @@
// // All methods that begin with "Test" are run as tests within a
// // suite.
// func (suite *ExampleTestSuite) TestExample() {
// assert.Equal(suite.T(), suite.VariableThatShouldStartAtFive, 5)
// suite.Equal(suite.VariableThatShouldStartAtFive, 5)
// assert.Equal(suite.T(), 5, suite.VariableThatShouldStartAtFive)
// suite.Equal(5, suite.VariableThatShouldStartAtFive)
// }
//
// // In order for 'go test' to run this suite, we need to create