Comment #2 on issue 1329 by [email protected]: Allow "from <module> import
<Library>" for Library imports
http://code.google.com/p/robotframework/issues/detail?id=1329
Currently what I am trying to do is *only* done in a custom test library.
It would be useful to be able to use Robots built in keywords to do some of
these simple comparisons instead of having to create a custom keyword for
every single comparison that I need to do.
e.g.
should be equal ${obj1} ${obj2}
Robot can *almost* support this right now. We can
import "collections.OrderedDict" (or any other sub-module) in suite
settings, we just need finer control over how the namespace is handled.