require "test_helper" class TodoTest < ActiveSupport::TestCase test "requires a title" do assert_not Todo.new(title: "").valid? end end