aboutsummaryrefslogtreecommitdiff
blob: a9f46c2aefa24ce665db5707d36bc0d2e6599752 (plain)
1
2
3
4
5
6
7
8
9
10
require 'test_helper'

class CategoriesRoutesTest < ActionDispatch::IntegrationTest

  test "can see the categories page" do
    get "/categories"
    assert_select "h1", "Packages"
  end

end