Added controller/view for landing page

This commit is contained in:
jfederico
2016-10-14 11:59:21 -04:00
parent a15bf5b3a9
commit c318d7c5d8
7 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,9 @@
require 'test_helper'
class LandingControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get landing_index_url
assert_response :success
end
end