This commit is contained in:
O01eg 2019-02-09 12:25:02 +03:00
parent 53510f3268
commit 87af609a6f
No known key found for this signature in database
GPG Key ID: 8FBA74B3E78B4677

View File

@ -33,7 +33,12 @@ end
@test backend() == Plots.UnicodePlotsBackend() @test backend() == Plots.UnicodePlotsBackend()
# lets just make sure it runs without error # lets just make sure it runs without error
@test isa(plot(rand(10)), Plots.Plot) == true p = plot(rand(10))
@test isa(p, Plots.Plot) == true
@test isa(display(p), Nothing) == true
p = bar(randn(10))
@test isa(p, Plots.Plot) == true
@test isa(display(p), Nothing) == true
end end
# The plotlyjs testimages return a connection error on travis: # The plotlyjs testimages return a connection error on travis: