{"id":651,"date":"2009-05-18T18:57:55","date_gmt":"2009-05-18T09:57:55","guid":{"rendered":"http:\/\/www.gesource.jp\/weblog\/?p=651"},"modified":"2017-07-16T20:56:18","modified_gmt":"2017-07-16T11:56:18","slug":"rspec","status":"publish","type":"post","link":"https:\/\/www.gesource.jp\/weblog\/?p=651","title":{"rendered":"RSpec\u306e\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u306e\u30c6\u30b9\u30c8\u3067\u5229\u7528\u3067\u304d\u308b\u6a5f\u80fd"},"content":{"rendered":"<h3>\u30a2\u30af\u30bb\u30b9<\/h3>\n<p>Get\u3067\u30a2\u30af\u30bb\u30b9\u3059\u308b<\/p>\n<pre><code>get(action, params={})\n\n#\u4f8b\nget(:index, :username =&gt; 'foo', :password =&gt; 'bar')\n<\/code><\/pre>\n<p>Post\u3067\u30a2\u30af\u30bb\u30b9\u3059\u308b<\/p>\n<pre><code>post(action, params={})\n#\u4f8b\npost(:index, :username =&gt; 'foo', :password =&gt; 'bar')\n<\/code><\/pre>\n<h3>\u53d6\u5f97<\/h3>\n<p>\u30ec\u30b9\u30dd\u30f3\u30b9\u3092\u53d6\u5f97\u3059\u308b<\/p>\n<pre><code>reponse()\n<\/code><\/pre>\n<p>\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5909\u6570\u3092\u53d6\u5f97\u3059\u308b<\/p>\n<pre><code>assigns[\u5909\u6570\u540d]\n\n#\u4f8b\nuser = assigns[:user]\n<\/code><\/pre>\n<p>\u30bb\u30c3\u30b7\u30e7\u30f3\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u53d6\u5f97\u3059\u308b<\/p>\n<pre><code>session()\n\n#\u4f8b\nsession[:user].id.should == 1\n<\/code><\/pre>\n<p>flash\u306e\u5185\u5bb9\u3092\u53d6\u5f97\u3059\u308b<\/p>\n<pre><code>flash()\n\n#\u4f8b\nflash[:error_message].should be_blank\n<\/code><\/pre>\n<h3>\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u306e\u30c6\u30b9\u30c8\u3067\u4f7f\u3046matcher<\/h3>\n<p>\u30ec\u30b9\u30dd\u30f3\u30b9\u306e\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9<\/p>\n<pre><code>response.should be_success\n<\/code><\/pre>\n<p>\u30ea\u30c0\u30a4\u30ec\u30af\u30c8\u5148<\/p>\n<pre><code>response.should redirect_to(:controller =&gt; 'login', :action =&gt; 'index')\n<\/code><\/pre>\n<p>\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8<\/p>\n<pre><code>response.should render_template('login')\n<\/code><\/pre>\n<p><iframe src=\"http:\/\/rcm-jp.amazon.co.jp\/e\/cm?t=gesource-22&#038;o=9&#038;p=8&#038;l=as1&#038;asins=4798116998&#038;md=1X69VDGQCMF7Z30FM082&#038;fc1=000000&#038;IS2=1&#038;lt1=_blank&#038;m=amazon&#038;lc1=0000FF&#038;bc1=FFFFFF&#038;bg1=FFFFFF&#038;f=ifr\" style=\"width:120px;height:240px;\" scrolling=\"no\" marginwidth=\"0\" marginheight=\"0\" frameborder=\"0\"><\/iframe><\/p>\n<p><iframe src=\"http:\/\/rcm-jp.amazon.co.jp\/e\/cm?t=gesource-22&#038;o=9&#038;p=8&#038;l=as1&#038;asins=4873114004&#038;md=1X69VDGQCMF7Z30FM082&#038;fc1=000000&#038;IS2=1&#038;lt1=_blank&#038;m=amazon&#038;lc1=0000FF&#038;bc1=FFFFFF&#038;bg1=FFFFFF&#038;f=ifr\" style=\"width:120px;height:240px;\" scrolling=\"no\" marginwidth=\"0\" marginheight=\"0\" frameborder=\"0\"><\/iframe><\/p>\n<p><iframe src=\"http:\/\/rcm-jp.amazon.co.jp\/e\/cm?t=gesource-22&#038;o=9&#038;p=8&#038;l=as1&#038;asins=4873113865&#038;md=1X69VDGQCMF7Z30FM082&#038;fc1=000000&#038;IS2=1&#038;lt1=_blank&#038;m=amazon&#038;lc1=0000FF&#038;bc1=FFFFFF&#038;bg1=FFFFFF&#038;f=ifr\" style=\"width:120px;height:240px;\" scrolling=\"no\" marginwidth=\"0\" marginheight=\"0\" frameborder=\"0\"><\/iframe><\/p>\n<p><iframe src=\"http:\/\/rcm-jp.amazon.co.jp\/e\/cm?t=gesource-22&#038;o=9&#038;p=8&#038;l=as1&#038;asins=4797336625&#038;md=1X69VDGQCMF7Z30FM082&#038;fc1=000000&#038;IS2=1&#038;lt1=_blank&#038;m=amazon&#038;lc1=0000FF&#038;bc1=FFFFFF&#038;bg1=FFFFFF&#038;f=ifr\" style=\"width:120px;height:240px;\" scrolling=\"no\" marginwidth=\"0\" marginheight=\"0\" frameborder=\"0\"><\/iframe><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u30a2\u30af\u30bb\u30b9 Get\u3067\u30a2\u30af\u30bb\u30b9\u3059\u308b get(action, params={}) #\u4f8b get(:index, :username =&gt; &#8216;foo&#8217;, :password =&gt; &#8216;bar&#8217;) Post\u3067\u30a2\u30af\u30bb\u30b9\u3059 &#8230;<\/p>\n<p><a href=\"https:\/\/www.gesource.jp\/weblog\/?p=651\" class=\"more-link\">Continue reading &lsquo;RSpec\u306e\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u306e\u30c6\u30b9\u30c8\u3067\u5229\u7528\u3067\u304d\u308b\u6a5f\u80fd&rsquo; &raquo;<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[5],"tags":[71,142],"class_list":["post-651","post","type-post","status-publish","format-standard","hentry","category-ruby","tag-rspec","tag-ruby"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.gesource.jp\/weblog\/index.php?rest_route=\/wp\/v2\/posts\/651","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.gesource.jp\/weblog\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.gesource.jp\/weblog\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.gesource.jp\/weblog\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.gesource.jp\/weblog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=651"}],"version-history":[{"count":0,"href":"https:\/\/www.gesource.jp\/weblog\/index.php?rest_route=\/wp\/v2\/posts\/651\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.gesource.jp\/weblog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=651"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.gesource.jp\/weblog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=651"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.gesource.jp\/weblog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=651"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}