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()
|
||
|
}
|