<?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: RSpec Request Spec to Test Rails / Grape API Functionality</title>
	<atom:link href="http://qugstart.com/blog/ruby-and-rails/rspec-request-spec-to-test-rails-grape-api-functionality/feed/" rel="self" type="application/rss+xml" />
	<link>http://qugstart.com/blog/ruby-and-rails/rspec-request-spec-to-test-rails-grape-api-functionality/</link>
	<description>Ruby, Rails, Life</description>
	<lastBuildDate>Thu, 29 Nov 2012 06:19:57 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Andrew Waage</title>
		<link>http://qugstart.com/blog/ruby-and-rails/rspec-request-spec-to-test-rails-grape-api-functionality/comment-page-1/#comment-29027</link>
		<dc:creator>Andrew Waage</dc:creator>
		<pubDate>Tue, 02 Oct 2012 18:13:07 +0000</pubDate>
		<guid isPermaLink="false">http://qugstart.com/blog/?p=106#comment-29027</guid>
		<description>@Fabio, This is great, thanks for posting!</description>
		<content:encoded><![CDATA[<p>@Fabio, This is great, thanks for posting!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabio</title>
		<link>http://qugstart.com/blog/ruby-and-rails/rspec-request-spec-to-test-rails-grape-api-functionality/comment-page-1/#comment-29021</link>
		<dc:creator>Fabio</dc:creator>
		<pubDate>Tue, 02 Oct 2012 17:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://qugstart.com/blog/?p=106#comment-29021</guid>
		<description>I&#039;ve made a module to handle cases like this

https://github.com/intridea/grape/pull/254</description>
		<content:encoded><![CDATA[<p>I&#8217;ve made a module to handle cases like this</p>
<p><a href="https://github.com/intridea/grape/pull/254" rel="nofollow">https://github.com/intridea/grape/pull/254</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bogdan</title>
		<link>http://qugstart.com/blog/ruby-and-rails/rspec-request-spec-to-test-rails-grape-api-functionality/comment-page-1/#comment-21391</link>
		<dc:creator>Bogdan</dc:creator>
		<pubDate>Thu, 14 Jun 2012 21:33:30 +0000</pubDate>
		<guid isPermaLink="false">http://qugstart.com/blog/?p=106#comment-21391</guid>
		<description>Thanks a lot, it helped me to :)</description>
		<content:encoded><![CDATA[<p>Thanks a lot, it helped me to <img src='http://qugstart.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Dickey</title>
		<link>http://qugstart.com/blog/ruby-and-rails/rspec-request-spec-to-test-rails-grape-api-functionality/comment-page-1/#comment-12581</link>
		<dc:creator>Jeff Dickey</dc:creator>
		<pubDate>Tue, 14 Feb 2012 06:58:13 +0000</pubDate>
		<guid isPermaLink="false">http://qugstart.com/blog/?p=106#comment-12581</guid>
		<description>@Andrew: Thanks a lot for the quick pointer! What I&#039;m working on now is going to need both params _and_ headers, alas, so this does help a lot.</description>
		<content:encoded><![CDATA[<p>@Andrew: Thanks a lot for the quick pointer! What I&#8217;m working on now is going to need both params _and_ headers, alas, so this does help a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Waage</title>
		<link>http://qugstart.com/blog/ruby-and-rails/rspec-request-spec-to-test-rails-grape-api-functionality/comment-page-1/#comment-12580</link>
		<dc:creator>Andrew Waage</dc:creator>
		<pubDate>Tue, 14 Feb 2012 06:08:52 +0000</pubDate>
		<guid isPermaLink="false">http://qugstart.com/blog/?p=106#comment-12580</guid>
		<description>@jeff - check out this doc here for the get request:
http://api.rubyonrails.org/classes/ActionDispatch/Integration/RequestHelpers.html#method-i-get

You can see here that the 2nd parameter is the GET parameters. In my example, I am not passing any parameters, so I pass in &#039;nil&#039;. Hope that helps!</description>
		<content:encoded><![CDATA[<p>@jeff &#8211; check out this doc here for the get request:<br />
<a href="http://api.rubyonrails.org/classes/ActionDispatch/Integration/RequestHelpers.html#method-i-get" rel="nofollow">http://api.rubyonrails.org/classes/ActionDispatch/Integration/RequestHelpers.html#method-i-get</a></p>
<p>You can see here that the 2nd parameter is the GET parameters. In my example, I am not passing any parameters, so I pass in &#8216;nil&#8217;. Hope that helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Dickey</title>
		<link>http://qugstart.com/blog/ruby-and-rails/rspec-request-spec-to-test-rails-grape-api-functionality/comment-page-1/#comment-12578</link>
		<dc:creator>Jeff Dickey</dc:creator>
		<pubDate>Tue, 14 Feb 2012 04:11:37 +0000</pubDate>
		<guid isPermaLink="false">http://qugstart.com/blog/?p=106#comment-12578</guid>
		<description>Outstanding! Now if someone could just point me to appropriate doc and/or explain what that &#039;nil&#039; second parameter is for? I&#039;m pretty aggressive about using the right tool for a job (like display specs). This, of course, implies that I have to know _how_ to use the tool in question fully...</description>
		<content:encoded><![CDATA[<p>Outstanding! Now if someone could just point me to appropriate doc and/or explain what that &#8216;nil&#8217; second parameter is for? I&#8217;m pretty aggressive about using the right tool for a job (like display specs). This, of course, implies that I have to know _how_ to use the tool in question fully&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl</title>
		<link>http://qugstart.com/blog/ruby-and-rails/rspec-request-spec-to-test-rails-grape-api-functionality/comment-page-1/#comment-8906</link>
		<dc:creator>Karl</dc:creator>
		<pubDate>Tue, 18 Oct 2011 23:17:35 +0000</pubDate>
		<guid isPermaLink="false">http://qugstart.com/blog/?p=106#comment-8906</guid>
		<description>Just what I was looking for. I was able to dump using curl and the tests are quite a bit faster. Thanks!</description>
		<content:encoded><![CDATA[<p>Just what I was looking for. I was able to dump using curl and the tests are quite a bit faster. Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
