FactoryBot.define do
  factory :gestao_de_estoque_informacao_extra, class: 'GestaoDeEstoque::InformacaoExtra' do
    item_do_recebimento_de_material_id { FactoryBot.create(:gestao_de_estoque_itens_do_recebimento_de_material).id }
    validade { "2022-02-08" }
    aspecto_geral { "aspecto_geral_regular" }
    perecivel { false }
    lote_de_fabricacao { "MyString" }
    quantidade { 10 }
  end
end
