Skip to content
Snippets Groups Projects
Verified Commit 449f2174 authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Remove tests for displays

parent dabf39ac
No related branches found
No related tags found
1 merge request!46Improve displays
using Test
using KM3io
using KM3NeTTestData
const ONLINEFILE = datapath("online", "km3net_online.root")
const OFFLINEFILE = datapath("offline", "km3net_offline.root")
@testset "displays" begin
f = ROOTFile(OFFLINEFILE)
open(tempname(), "w") do io
show(io, f.offline[1]) # Evt
show(io, MIME"text/plain"(), f.offline[1]) # Evt
show(io, f.offline[1:4]) # compact Evt
show(io, f.offline[1].trks) # Trks
show(io, f.offline[1].trks[1:4]) # compact Trks
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment