Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
renamed test_parse_mode subroutine for consistency
  • Loading branch information
jvdp1 committed Jan 4, 2020
commit c65f19654b938b13b3c9f7facf4fdb65d03f43a5
6 changes: 3 additions & 3 deletions src/tests/io/test_parse_mode.f90
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
program test_open
program test_parse_mode
use stdlib_experimental_io, only: parse_mode
use stdlib_experimental_error, only: assert
implicit none

call test_parse_mode()
call test_parse_mode_expected_order()

call test_parse_mode_reverse_order()

call test_parse_mode_random_order()

contains

subroutine test_parse_mode()
subroutine test_parse_mode_expected_order()
character(3) :: m
m = parse_mode("")
call assert(m == "r t")
Expand Down