mirror of
https://github.com/kingomarnajjar/amaysim_crap.git
synced 2026-07-26 06:37:26 +10:00
14 lines
269 B
Ruby
14 lines
269 B
Ruby
require 'test_helper'
|
|
|
|
class PagesControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get homepage" do
|
|
get pages_homepage_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get help" do
|
|
get pages_help_url
|
|
assert_response :success
|
|
end
|
|
|
|
end
|