You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
290 B
Ruby

require "application_system_test_case"
class LayoutHelperTest < ApplicationSystemTestCase
test "rendered page contains both base and application layouts" do
visit("/")
assert_selector("html>head+body")
assert_selector("body p")
assert_match(/Home/, page.title)
end
end