Re: [Tutor] Where to store test-code?

2019-06-13 Thread Mats Wichmann
On 6/13/19 2:22 AM, Thomas Güttler wrote: > Up to now I use this structure: > > src/myapp/setup.py > src/myapp/myapp/real_code.py > > Now I want to write a test for a method which is implemented real_code.py. > > Where should I write store the file which contains the unittest? > > Is there a

[Tutor] Where to store test-code?

2019-06-13 Thread Thomas Güttler
Up to now I use this structure: src/myapp/setup.py src/myapp/myapp/real_code.py Now I want to write a test for a method which is implemented real_code.py. Where should I write store the file which contains the unittest? Is there a guideline for the directory structure of tests? I know that