Unittesting begins

This commit is contained in:
Bel LaPointe
2019-11-12 13:45:32 -07:00
commit 8c4bc81694
35 changed files with 3231 additions and 0 deletions

17
feed/feed.go Normal file
View File

@@ -0,0 +1,17 @@
package feed
import (
"errors"
"local/storage"
"net/url"
)
type Feed struct{}
func New(db storage.DB, values url.Values) (*Feed, error) {
return nil, errors.New("not impl")
}
func (f *Feed) Read(p []byte) (int, error) {
return 0, errors.New("not impl")
}