mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 02:41:41 +00:00
10 lines
173 B
Ruby
10 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
|