Question
Given that by running monkeyrunner
without arguments it starts a REPL session where I can use monkey runner python classes and modules.
Is there a way to also load a python class in there and test that class using the REPL?
What I tried
I've tried reading the manual but other than saying that there are command line flags/options it doesn't list them anywhere that I can see.
Running man monkeyrunner
doesn't yield any reference manual. Nor does monkeyrunner -help
or monkeyrunner -h
or monkeyrunner --help
.
I've tried cd
ing myself into the folder with the abc.py
file, but import abc
on the monkeyrunner
REPL doesn't load the module by giving a ImportError: No module named abc
.