Files
todo-back/test/models/todo_test.rb
T
2026-08-07 19:53:30 -05:00

8 lines
145 B
Ruby

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