Rspecについてはこちらにまとめようと思います。 (ちょいちょい追記予定) describe test対象 describe 'Foo' do end context testの条件 describe 'Foo' do context 'Bar' do end end it test内容 exam…
まずはTOPページ用のControllerとメソッドを追加しました。 rails g controller root index あとは、routes.rbにroot toを追加。 get 'root/index' root to: 'root#index' これで、http://localhost…