aboutsummaryrefslogtreecommitdiff
blob: 71803aaa27a10f8f9d0142369947e0190dba25f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'test_helper'

class MainRoutesTest < ActionDispatch::IntegrationTest
  test "view landing page" do
    get "/"
    assert_select "h2", "Welcome to the Home of 1 Gentoo Packages"
  end

  test "test route not present" do
    assert_raises(ActionController::RoutingError) do
      get '/larry'
    end
  end

end