I've written a function which opens a vim editor with the given filename when called.. How can I do the unittest of these types of operations....
|
To unit test something like this you must mock/stub out your dependencies. In this case lets say you are launching vim by calling os.system("vim"). In your unit test you can stub out that function call doing something like:
For more details on mocking and stubbing take a look at this article Update: I added the try/finally to restore the original system function as suggested by Dave Kirby |
||||
|
|
This is no longer unittesting but integration testing. Why do you need to launch vim? Usually, you would 'mock' this, simulate the process spawning and depend on the fact that python's subprocess module is well tested. To accomplish this in your code, you can, for example, subclass the class that implements your functionality and override the method that's responsible for spawning. Then test this subclass. I.e.
|
|||
|
|