diff options
author | bnewbold <bnewbold@robocracy.org> | 2016-03-01 21:59:27 -0800 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2016-03-01 21:59:27 -0800 |
commit | f3021ab21f796561c1f9f7ad8a0f81ce6c2f2807 (patch) | |
tree | 772eff0686f9944aa8e246a0c9e057010e09f08d /test/test_gs.jl | |
parent | d6c2ac682165bfc4c7ecf9fb7027206735e5bfef (diff) | |
download | PyX.jl-f3021ab21f796561c1f9f7ad8a0f81ce6c2f2807.tar.gz PyX.jl-f3021ab21f796561c1f9f7ad8a0f81ce6c2f2807.zip |
tests: more of them
Diffstat (limited to 'test/test_gs.jl')
-rw-r--r-- | test/test_gs.jl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/test_gs.jl b/test/test_gs.jl new file mode 100644 index 0000000..1004640 --- /dev/null +++ b/test/test_gs.jl @@ -0,0 +1,15 @@ + +function try_gs(el) + + writeGSfile(el, "/tmp/asdfasdf2.png", "png16m") + writeGSfile(el, "/tmp/asdfasdf2.jpeg", "jpeg") + pipeGS(el) + pipeGS(el, "png16m") + pipeGS(el, "jpeg") + true +end + +@test try_gs(c) +@test try_gs(g) +@test try_gs(g3d) + |