feat: add home page

This commit is contained in:
Adrien Waksberg 2018-07-15 15:46:05 +02:00
parent fcef2c79fe
commit cac31ff12c
16 changed files with 35932 additions and 4 deletions
test/controllers

View file

@ -0,0 +1,10 @@
require 'test_helper'
class HomeControllerTest < ActionDispatch::IntegrationTest
test 'should get index' do
get root_url
assert_response :success
assert_select 'title', 'Kaiho'
assert_select 'h3', 'Welcome'
end
end