Hi,

I can tests go in the same files as the code.
    
    
    proc hello(name: string): string  =
        
        result = "hello"
       result.add name
    
    
    when TEST:
        assert hello "world" == "hello world"
    
    
    Run

I considering, that it is good way. Do you any best practicies of this feauture?

thanks

Reply via email to