mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 23:01:41 +00:00
9 lines
173 B
Ruby
9 lines
173 B
Ruby
# frozen_string_literal: true
|
|
|
|
class LicenciaTest < ActiveSupport::TestCase
|
|
test 'se pueden crear' do
|
|
licencia = build :licencia
|
|
|
|
assert licencia.valid?
|
|
end
|
|
end
|