test/models/msip/tdocumento_test.rb in msip-2.2.0.alfa3 vs test/models/msip/tdocumento_test.rb in msip-2.2.0.beta1
- old
+ new
@@ -1,25 +1,28 @@
-require_relative '../../test_helper'
+# frozen_string_literal: true
+require_relative "../../test_helper"
+
module Msip
class TdocumentoTest < ActiveSupport::TestCase
-
test "valido" do
- tdocumento = Tdocumento.create PRUEBA_TDOCUMENTO
- assert tdocumento.valid?
+ tdocumento = Tdocumento.create(PRUEBA_TDOCUMENTO)
+
+ assert_predicate tdocumento, :valid?
tdocumento.destroy
end
test "no valido" do
- tdocumento = Tdocumento.new PRUEBA_TDOCUMENTO
- tdocumento.nombre = ''
+ tdocumento = Tdocumento.new(PRUEBA_TDOCUMENTO)
+ tdocumento.nombre = ""
+
assert_not tdocumento.valid?
tdocumento.destroy
end
test "existente" do
tdocumento = Msip::Tdocumento.where(id: 7).take
- assert_equal tdocumento.nombre, "OTRO"
- end
+ assert_equal("OTRO", tdocumento.nombre)
+ end
end
end