gestaogovbr / api-pgd

API integradora dos sistemas do Programa de Gestão.
https://www.gov.br/servidor/pt-br/assuntos/programa-de-gestao
GNU Affero General Public License v3.0
11 stars 5 forks source link

Make some fields in Entrega mandatory and add some tests #96

Closed augusto-herrmann closed 5 months ago

augusto-herrmann commented 5 months ago

According to requisites file defined by stakeholder, some fields were defined as mandatory.

In models.py they were indeed nullable=False, but in schemas.py they were defined as optional. We made it consistent by making it mandatory there too.

Some new tests were added for making sure that optional fields can be included with a json value of null.

Fixes #95