Better comments

pull/15/head
Mitchell Hashimoto 13 years ago
parent 03ff35d6a0
commit 720bb0c297

@ -15,11 +15,12 @@ func addrPort(address net.Addr) string {
func Test_netListenerInRange(t *testing.T) {
assert := asserts.NewTestingAsserts(t, true)
// Verify it selects an open port
// Open up port 10000 so that we take up a port
L1000, err := net.Listen("tcp", ":10000")
defer L1000.Close()
assert.Nil(err, "should be able to bind to port 10000")
// Verify it selects an open port
L := netListenerInRange(10000, 10005)
assert.NotNil(L, "should have a listener")
assert.Equal(addrPort(L.Addr()), "10001", "should bind to open port")

Loading…
Cancel
Save