aboutsummaryrefslogtreecommitdiffstats
path: root/test/runtests.jl
blob: d0bb3c7ad3c551a2d4d658eb320f57faa4d4787a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51

println("Importing libs...")
include("../src/PyX.jl")
using PyX
using LaTeXStrings
using Base.Test

##### Setup Common Objects
println("Creating test objects...")
include("test_objects.jl")

##### MIME and Ghostscript output
println("MIME and Ghostscript tests...")

include("test_gs.jl")
include("test_mime.jl")

##### Run all the examples that don't have data files

println("Drawing...")
include("../examples/drawing/arrow.jl")
#include("../examples/drawing/metapost.jl") # Python3 only?
include("../examples/drawing/pathitem.jl")
include("../examples/drawing/path.jl")
include("../examples/drawing/strokefill.jl")
include("../examples/drawing/style.jl")

include("../examples/drawing2d/clipping.jl")
include("../examples/drawing2d/ellipse.jl")
include("../examples/drawing2d/insert.jl")
include("../examples/drawing2d/parallel.jl")
include("../examples/drawing2d/smoothed.jl")

println("Graphs...")
include("../examples/splitgraphs/splitatvalue.jl")

# All bargraphs have data files

include("../examples/graphs/axis.jl")
include("../examples/graphs/change.jl")
include("../examples/graphs/function.jl")
include("../examples/graphs/lissajous.jl")
include("../examples/graphs/points.jl")

include("../examples/graphstyles/histogram.jl")
include("../examples/graphstyles/usesymbol.jl")
include("../examples/graphstyles/density.jl")

println("3D Graphs...")
include("../examples/3dgraphs/bar.jl")