test/models/msip/tclase_test.rb in msip-2.2.0.alfa3 vs test/models/msip/tclase_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 TclaseTest < ActiveSupport::TestCase - test "valido" do - tclase = Tclase.create PRUEBA_TCLASE - assert tclase.valid? + tclase = Tclase.create(PRUEBA_TCLASE) + + assert_predicate tclase, :valid? tclase.destroy end test "no valido" do - tclase = Tclase.new PRUEBA_TCLASE - tclase.nombre = '' + tclase = Tclase.new(PRUEBA_TCLASE) + tclase.nombre = "" + assert_not tclase.valid? tclase.destroy end test "existente" do - tclase = Msip::Tclase.where(id: 'C').take - assert_equal tclase.nombre, "CORREGIMIENTO" - end + tclase = Msip::Tclase.where(id: "C").take + assert_equal("CORREGIMIENTO", tclase.nombre) + end end end