all repos

rss-tools @ 58cc1bd492af31e6c9acf65e690474c8c1edf164

get rss feed from sources that(i need and) dont provide one

rss-tools/vendor/olexsmir.xyz/x/is/doc.go (view raw)

Oleksandr Smirnov Oleksandr Smirnov
olexsmir@gmail.com
we're vendoring now, 7 days ago
1
// Package is provides minimal assertions for tests.
2
//
3
// Example:
4
//
5
//	func TestX(t *testing.T) {
6
//		var a = "Hello, Gopher!"
7
//		var b = "Hello, Gopher!"
8
//		is.Equal(t, a, b)
9
//
10
//		var err = errors.New("I'm an error!")
11
//		is.Err(t, err, nil)
12
//	}
13
package is