Basic unchoking and uploading. Accept incoming connections. Break out torrentfs lib. Fix and implement some protocol stuff.
18 lines
246 B
Go
18 lines
246 B
Go
package torrent
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestAddTorrentNoSupportedTrackerSchemes(t *testing.T) {
|
|
t.SkipNow()
|
|
}
|
|
|
|
func TestAddTorrentNoUsableURLs(t *testing.T) {
|
|
t.SkipNow()
|
|
}
|
|
|
|
func TestAddPeersToUnknownTorrent(t *testing.T) {
|
|
t.SkipNow()
|
|
}
|