社会不適合破壊的お味噌マン

くまのプーさんのような大人になりたいです!

Ruby on Rails

Railsで固定ページを作成する手順

1.テストを書く(RED) spec/requests/****_spec.rb describe "Contact page" do it "should have the content 'Contact'" do visit '/static_pages/contact' expect(page).to have_content('Contact') end it "should have the title 'Contact'" do visit '/s…

Rspec実行時のエラー

Rails 4.1.0.betaでRSpecを実行した場合 一応テストは動きますが、長ったらしいエラーが毎回表示されるので、その解消法を調べました。 Error内容 Warning: you should require 'minitest/autorun' instead. Warning: or add 'gem "minitest"' before 'requi…

RoRチュートリアルメモ(第3章)

Railsアプリケーション作成の際 rails new sample_app --skip-test-unit railsの--skip-test-unitというオプションはTest::Unitフレームワークと関連しているtestディレクトリを作成しないようにするオプションでRspecを使う場合使用する。 Rails Gemfileに…