diff options
author | bnewbold <bnewbold@robocracy.org> | 2016-04-04 17:32:24 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2016-04-04 17:32:24 -0400 |
commit | 6ca0769a2f82c7c7d6a34fda2571b9ae15950842 (patch) | |
tree | 56e32d7ad1f1054190c30a4459b14464547daa1e /test/runtests.jl | |
parent | b20c077ec646fdc2612e31f3305e8cfcedae207b (diff) | |
download | PyX.jl-6ca0769a2f82c7c7d6a34fda2571b9ae15950842.tar.gz PyX.jl-6ca0769a2f82c7c7d6a34fda2571b9ae15950842.zip |
add recursive version of PyCall's pywrap
Will be used to have deeply nested Julia Modules for deeply nested
Python modules Eg, os.path.genericpath.* in python becomes
os.path.genericpath.* in Julia.
This version only works with modules, not Python classes.
Thanks to James Porter at the Recurse Center for helping with this!
Diffstat (limited to 'test/runtests.jl')
-rw-r--r-- | test/runtests.jl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/runtests.jl b/test/runtests.jl index d0bb3c7..c4beb52 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -3,8 +3,13 @@ println("Importing libs...") include("../src/PyX.jl") using PyX using LaTeXStrings +using PyCall using Base.Test +##### Helpers +println("Testing helpers...") +include("test_pyrecwrap.jl") + ##### Setup Common Objects println("Creating test objects...") include("test_objects.jl") |