mirror of
https://github.com/eiblog/eiblog.git
synced 2026-02-04 22:02:26 +08:00
15 lines
276 B
Go
15 lines
276 B
Go
// Package main provides ...
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/eiblog/eiblog/setting"
|
|
)
|
|
|
|
func TestPing(t *testing.T) {
|
|
sf := Superfeedr{URL: fmt.Sprintf("https://%s.superfeedr.com", setting.Conf.Superfeedr)}
|
|
sf.PingFunc("https://deepzz.com/rss.html")
|
|
}
|