aboutsummaryrefslogtreecommitdiff
blob: 56c36a3485c4fe28c5c3674b82429c3ddc79a523 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
require 'test_helper'

class AboutRoutesTest < ActionDispatch::IntegrationTest

  test "can see the about page" do
    get "/about"
    assert_select "h1", "About packages.gentoo.org"
  end

  test "can see the feedback page" do
    get "/about/feedback"
    assert_select "h1", "Feedback"
  end

  test "can see the about feeds page" do
    get "/about/feeds"
    assert_select "h1", "Update Feeds"
  end

  test "can see the about help page" do
    get "/about/help"
    assert_select "h1", "Help"
  end

  test "can see the changelog page" do
    get "/about/changelog"
    assert_select "h1", "Changelog"
  end

end