require 'rails_helper'

RSpec.describe Contabilidade::ElementoPorAcaoDoContigenciamento, type: :model do
  describe 'associations' do
    it { should belong_to(:acao_do_contigenciamento) }
    it { should belong_to(:elemento_de_despesa) }
  end

  describe 'validations' do
    it { should validate_presence_of(:elemento_de_despesa_id) }
    it { should validate_presence_of(:valor) }
  end
end
