mirror of
https://github.com/profullstack/agentbbs.git
synced 2026-08-13 14:27:27 +00:00
10 lines
206 B
Go
10 lines
206 B
Go
package nntpd
|
|
|
|
import "testing"
|
|
|
|
func TestParseRangeSingleArticle(t *testing.T) {
|
|
low, high := parseRange("5")
|
|
if low != 5 || high != 5 {
|
|
t.Fatalf(`parseRange("5") = %d, %d; want 5, 5`, low, high)
|
|
}
|
|
}
|