Asked by: Moaz

Hello, how are you?

I am new at testing, am using python lang.

My question is: If i have 2 modules as src
and 2 module as tests

and for example the src_module1 import src_module2.

and in the test_module1 i tested the module src_module1 with covrage about 100%.

So my question is: If i wrote the unit test for src-module1 should i wrote a test module for the other one?

am just not sure about it becaise as i said they have connection and if i tested the first module some of the functions from the other will be tested to.

So should i have for each module a test.