12 lines
209 B
Ruby
12 lines
209 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'test_helper'
|
||
|
|
||
|
class PosicionTest < ActiveSupport::TestCase
|
||
|
test 'se pueden crear' do
|
||
|
posicion = create :posicion
|
||
|
|
||
|
assert_equal true, posicion.valid?
|
||
|
end
|
||
|
end
|