Weave.jl/test/runtests.jl

51 lines
1.1 KiB
Julia
Raw Normal View History

using Weave
using Test
2014-12-06 18:16:45 +01:00
2018-07-25 20:43:38 +02:00
@testset "Weave" begin
@testset "Chunk options" begin
@info("Test: Chunk options")
include("chunk_options.jl")
end
@testset "Error handling " begin
@info("Testing error handling")
include("errors_test.jl")
end
@testset "Eval in module" begin
include("sandbox_test.jl")
end
2018-07-25 20:43:38 +02:00
@testset "Conversions" begin
@info("Test: Converting")
include("convert_test.jl")
end
@testset "Formatters" begin
@info("Testing formatters")
include("formatter_test.jl")
include("markdown_test.jl")
@info("Testing figure formatters")
include("figureformatter_test.jl")
end
@testset "Rich output" begin
@info("Testing rich output")
include("rich_output.jl")
end
2018-07-26 10:35:17 +02:00
@testset "Plots" begin
2018-08-14 11:32:51 +02:00
@info("Test: Weaving with Plots.jl")
include("plotsjl_test.jl")
end
@testset "Gadfly" begin
@info("Test: Weaving with Gadfly.jl")
include("cache_test.jl")
end
2018-07-25 20:43:38 +02:00
end
2018-07-23 18:39:48 +02:00
#@info("Test: Weaving with Plots.jl")
#include("plotsjl_test.jl")
#include("publish_test.jl")