Skip to content

Commit

Permalink
Merge pull request #7 from PharmCat/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
PharmCat committed Jan 17, 2023
2 parents 5454bfd + 3b5ab9e commit 2240295
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,17 @@ using Test
spssevlab = ODMXMLTools.spss_events_value_labels(mdb; variable = "StudyEventOID", value = :OID, label = :Name)
@test_nowarn show(io, spssevlab)

# Add user defuned labels
vlabs = [
"SubjectKey" => "Скрининговый номер",
"StudyEventOID" => "Визит",
"ItemGroupRepeatKey" => "Номер процедуры"]
spssvarlab = ODMXMLTools.spss_form_variable_labels(mdb, "FORM_DEAN_1", vlabs)
@test_nowarn show(io, spssvarlab)

# Test Openclinica form list (experimental)
@test_nowarn ODMXMLTools.oclformdetailslist(mdb)

# DELETE ClinicalData
cdel = ODMXMLTools.findelements(odm, :ClinicalData)
@test_nowarn show(io, cdel)
Expand Down

2 comments on commit 2240295

@PharmCat
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/75822

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.0 -m "<description of version>" 224029511b87865598c68792713291d8c9c05138
git push origin v0.3.0

Please sign in to comment.