blob: 1e266642cc6c3d7e3fb9146ebaf59ea14219e400 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
require 'application_system_test_case'
class LicensesTest < ApplicationSystemTestCase
test 'can reach #show without login' do
visit license_url
assert_text 'AGPLv3'
end
end
|