diff --git a/feed_test.go b/feed_test.go index afd00bb..fa59226 100644 --- a/feed_test.go +++ b/feed_test.go @@ -21,8 +21,9 @@ var atomOutput = `A discussion on controlled parallelism in golang + <p>Go's goroutines make it easy to make <a href="http://collectiveidea.com/blog/archives/2012/12/03/playing-with-go-embarrassingly-parallel-scripts/">embarrassingly parallel programs</a>, but in many &quot;real world&quot; cases resources can be limited and attempting to do everything at once can exhaust your access to them.</p> + A discussion on controlled parallelism in golang Jason Moiron jmoiron@jmoiron.net @@ -32,31 +33,31 @@ var atomOutput = `More thoughts on logicless templates + More thoughts on logicless templates Idiomatic Code Reuse in Go 2013-01-16T21:52:35-05:00 tag:jmoiron.net,2013-01-16:/blog/idiomatic-code-reuse-in-go/ - How to use interfaces <em>effectively</em> + How to use interfaces <em>effectively</em> Never Gonna Give You Up Mp3 2013-01-16T21:52:35-05:00 tag:example.com,2013-01-16:/RickRoll.mp3 - Never gonna give you up - Never gonna let you down. + Never gonna give you up - Never gonna let you down. String formatting in Go 2013-01-16T21:52:35-05:00 tag:example.com,2013-01-16:/strings - How to use things like %s, %v, %d, etc. + How to use things like %s, %v, %d, etc. ` @@ -74,6 +75,7 @@ var rssOutput = ` A discussion on controlled parallelism in golang Jason Moiron Wed, 16 Jan 2013 21:52:35 -0500 + Go's goroutines make it easy to make embarrassingly parallel programs, but in many "real world" cases resources can be limited and attempting to do everything at once can exhaust your access to them.

]]>
Logic-less Template Redux @@ -179,6 +181,7 @@ func TestFeed(t *testing.T) { Description: "A discussion on controlled parallelism in golang", Author: &Author{Name: "Jason Moiron", Email: "jmoiron@jmoiron.net"}, Created: now, + Content: `

Go's goroutines make it easy to make embarrassingly parallel programs, but in many "real world" cases resources can be limited and attempting to do everything at once can exhaust your access to them.

`, }, { Title: "Logic-less Template Redux",