diff --git a/tests/test_population.py b/tests/test_population.py new file mode 100644 index 00000000..7fc5da6e --- /dev/null +++ b/tests/test_population.py @@ -0,0 +1,19 @@ +from propulate.population import Individual + + +def test_individual(): + ind_map = { + "float1": 0.1, + "float2": 0.2, + "int1": 3, + "int2": 4, + "cat1": "e", + "cat2": "f", + } + + ind = Individual(ind_map) + print(ind) + + +def test_limits(): + raise