]> Sergey Matveev's repositories - btrtrc.git/blob - peer_protocol/protocol_test.go
Begin implementing the adding of peers, and initiating of connections
[btrtrc.git] / peer_protocol / protocol_test.go
1 package peer_protocol
2
3 import (
4         "testing"
5 )
6
7 func TestConstants(t *testing.T) {
8         // check that iota works as expected in the const block
9         if NotInterested != 3 {
10                 t.FailNow()
11         }
12 }