-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor test libraries && update Gestor_Dependencias issue #17
- Loading branch information
Showing
2 changed files
with
31 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
from pmp_iv.utils.validation import * | ||
from pmp_iv.models.coordenada import * | ||
from pmp_iv.models.fecha import * | ||
from pmp_iv.models.estado import * | ||
from pmp_iv.models.fwi import * | ||
from pmp_iv.enums.day import * | ||
from pmp_iv.enums.month import * | ||
import pmp_iv.utils.validation | ||
import pmp_iv.models.fecha | ||
import pmp_iv.models.estado | ||
import pmp_iv.models.fwi | ||
import pmp_iv.enums.day | ||
import pmp_iv.enums.month | ||
import pmp_iv.models.coordenada | ||
|
||
def test(): | ||
assert Coordenada(5,5) | ||
assert Fecha(Month.julio,Day.L) | ||
assert Estado(10,10,9,3,200) | ||
assert FWI(30.4,124.5,664.9,32.6) | ||
assert pmp_iv.models.coordenada.Coordenada(5,5) | ||
assert pmp_iv.models.fecha.Fecha(pmp_iv.enums.month.Month.julio,pmp_iv.enums.day.Day.L) | ||
assert pmp_iv.models.estado.Estado(10,10,9,3,200) | ||
assert pmp_iv.models.fwi.FWI(30.4,124.5,664.9,32.6) |