Commit 345afc5f by Đường Sỹ Hoàng

Update double quote and Identication

parent a24b0a58
Rails.application.routes.draw do
get 'static_pages/home'
get 'static_pages/help'
get 'static_pages/about'
get 'static_pages/contact'
get "static_pages/home"
get "static_pages/help"
get "static_pages/about"
get "static_pages/contact"
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
root 'static_pages#home'
root "static_pages#home"
end
require 'test_helper'
require "test_helper"
class StaticPagesControllerTest < ActionDispatch::IntegrationTest
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment