1
0
Fork 0
mirror of https://github.com/MillironX/XAM.jl.git synced 2024-11-14 14:23:11 +00:00

Uncomment tests

This commit is contained in:
Ciarán O'Mara 2020-07-22 12:02:25 +10:00
parent da0c1881dd
commit 7ccf0cd249

View file

@ -35,12 +35,12 @@
metainfo = SAM.MetaInfo("@PG ID:hisat2 PN:hisat2 VN: CL:\"/script.sh\"")
@test haskey(metainfo, "ID")
@test haskey(metainfo, "PN")
# @test haskey(metainfo, "VN")
@test haskey(metainfo, "VN")
@test haskey(metainfo, "CL")
@test metainfo["ID"] == "hisat2"
@test metainfo["PN"] == "hisat2"
# @test metainfo["VN"] == ""
@test metainfo["VN"] == ""
@test metainfo["CL"] == "\"/script.sh\""
end