We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc28b7d commit 76aa6bdCopy full SHA for 76aa6bd
.travis.yml
@@ -3,4 +3,7 @@ language: go
3
go:
4
- 1.3
5
- 1.4
6
- - tip
+ - tip
7
+
8
+script:
9
+ go test -run="TestJustToTest"
server_test.go
@@ -21,12 +21,7 @@ func newOutboundServer(t *testing.T) *OutboundServer {
21
return server
22
}
23
24
-func TestMessageHandler(t *testing.T) {
25
- go func() {
26
- server := newOutboundServer(t)
27
- server.Listen()
28
- }()
29
-
+func TestJustToTest(t *testing.T) {
30
Convey("A", t, func() {
31
32
})
0 commit comments