add entry requests, invite new users
CI / scan_ruby (push) Failing after 12s
CI / scan_js (push) Successful in 11s
CI / lint (push) Failing after 19s
CI / test (push) Successful in 34s

This commit is contained in:
2026-01-30 01:28:53 +01:00
parent b64ad52d30
commit 530021960e
35 changed files with 1838 additions and 118 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
require "test_helper"
class EntryTest < ActiveSupport::TestCase
test "should be valid with a category" do
entry = Entry.new(category: :word)
test "should be valid with a category and at least one translation" do
entry = Entry.new(category: :word, fi: "test")
assert entry.valid?
end