<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Doctest for Ruby</title>
	<atom:link href="http://blog.ianbicking.org/2007/08/23/doctest-for-ruby/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ianbicking.org/2007/08/23/doctest-for-ruby/</link>
	<description></description>
	<lastBuildDate>Wed, 08 Sep 2010 10:58:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: sebn</title>
		<link>http://blog.ianbicking.org/2007/08/23/doctest-for-ruby/comment-page-1/#comment-151517</link>
		<dc:creator>sebn</dc:creator>
		<pubDate>Wed, 10 Feb 2010 19:40:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ianbicking.org/2007/08/23/doctest-for-ruby/#comment-151517</guid>
		<description>Bryan: ok, I probably missed something, thanks for the comment.</description>
		<content:encoded><![CDATA[<p>Bryan: ok, I probably missed something, thanks for the comment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryan Larsen</title>
		<link>http://blog.ianbicking.org/2007/08/23/doctest-for-ruby/comment-page-1/#comment-149349</link>
		<dc:creator>Bryan Larsen</dc:creator>
		<pubDate>Fri, 29 Jan 2010 19:02:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ianbicking.org/2007/08/23/doctest-for-ruby/#comment-149349</guid>
		<description>sebn:  we use rubydoctest for most of the documentation for the Hobo project:  http://cookbook.hobocentral.net/manual/toc.   We never use the doctest: directive, never give test names, never use doctest_require and always hide our boilerplate and setup.</description>
		<content:encoded><![CDATA[<p>sebn:  we use rubydoctest for most of the documentation for the Hobo project:  <a href="http://cookbook.hobocentral.net/manual/toc" rel="nofollow">http://cookbook.hobocentral.net/manual/toc</a>.   We never use the doctest: directive, never give test names, never use doctest_require and always hide our boilerplate and setup.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sebn</title>
		<link>http://blog.ianbicking.org/2007/08/23/doctest-for-ruby/comment-page-1/#comment-133459</link>
		<dc:creator>sebn</dc:creator>
		<pubDate>Thu, 15 Oct 2009 07:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ianbicking.org/2007/08/23/doctest-for-ruby/#comment-133459</guid>
		<description>&quot;it doesn’t let you hide any boilerplate and setup&quot;

The ruby implementation sucks, IMHO, since:
- it force me to put a &quot;doctest:&quot; directive before every example
- it force me to give a &quot;test name&quot; to my examples (hey, I&#039;m writing a documentation, not a testcase!)
- &quot;it [effectively] doesn’t let you hide any boilerplate and setup&quot;, which sucks for rails, since I&#039;ll not use my code outside of this setup, and since it requires me to put some &quot;doctest_require&quot; directive before my examples (whereas in python doctests, I can accomplish some setup during the DocTestSuite instanciation).
- as a result, it doesn&#039;t feel natural, and sucks as a documentation</description>
		<content:encoded><![CDATA[<p>&#8220;it doesn’t let you hide any boilerplate and setup&#8221;</p>

<p>The ruby implementation sucks, IMHO, since:
- it force me to put a &#8220;doctest:&#8221; directive before every example
- it force me to give a &#8220;test name&#8221; to my examples (hey, I&#8217;m writing a documentation, not a testcase!)
- &#8220;it [effectively] doesn’t let you hide any boilerplate and setup&#8221;, which sucks for rails, since I&#8217;ll not use my code outside of this setup, and since it requires me to put some &#8220;doctest_require&#8221; directive before my examples (whereas in python doctests, I can accomplish some setup during the DocTestSuite instanciation).
- as a result, it doesn&#8217;t feel natural, and sucks as a documentation</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: roger</title>
		<link>http://blog.ianbicking.org/2007/08/23/doctest-for-ruby/comment-page-1/#comment-16473</link>
		<dc:creator>roger</dc:creator>
		<pubDate>Wed, 02 Apr 2008 14:57:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ianbicking.org/2007/08/23/doctest-for-ruby/#comment-16473</guid>
		<description>Yea! one less lib for me to write :)</description>
		<content:encoded><![CDATA[<p>Yea! one less lib for me to write :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paddy3118</title>
		<link>http://blog.ianbicking.org/2007/08/23/doctest-for-ruby/comment-page-1/#comment-331</link>
		<dc:creator>Paddy3118</dc:creator>
		<pubDate>Fri, 24 Aug 2007 05:42:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ianbicking.org/2007/08/23/doctest-for-ruby/#comment-331</guid>
		<description>Its great to see the idea of doctest spreading - every Dynamic language with a shell interface should have it!

Maybe someone should prompt those Perl 6 guys :-)

Thinking about these new versions made me add to the doctest wikipedia page a comment about &lt;b&gt;not&lt;/b&gt; mentioning on the wiki page until they became language standards though. This in turn gave me a great way of tidying-up the wikipedia Duck Typing entry so thanks.

- Paddy.</description>
		<content:encoded><![CDATA[<p>Its great to see the idea of doctest spreading &#8211; every Dynamic language with a shell interface should have it!</p>

<p>Maybe someone should prompt those Perl 6 guys :-)</p>

<p>Thinking about these new versions made me add to the doctest wikipedia page a comment about <b>not</b> mentioning on the wiki page until they became language standards though. This in turn gave me a great way of tidying-up the wikipedia Duck Typing entry so thanks.</p>

<ul>
<li>Paddy.</li>
</ul>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.555 seconds -->
