diff options
author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-11-08 03:18:42 -0500 |
---|---|---|
committer | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-11-17 00:17:01 -0500 |
commit | 4adfd921ae9138dcbc1787e049529d1a923b6a97 (patch) | |
tree | 373a8ef0385c6e9d3f999597f0cdb74baa3b7097 /test cases | |
parent | 9fc76b032348a71353555ab8d02f35415c0521bc (diff) | |
download | meson-4adfd921ae9138dcbc1787e049529d1a923b6a97.zip meson-4adfd921ae9138dcbc1787e049529d1a923b6a97.tar.gz meson-4adfd921ae9138dcbc1787e049529d1a923b6a97.tar.bz2 |
fs: use expanduser
Diffstat (limited to 'test cases')
-rw-r--r-- | test cases/common/227 fs module/meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test cases/common/227 fs module/meson.build b/test cases/common/227 fs module/meson.build index 515b3e2..30d193f 100644 --- a/test cases/common/227 fs module/meson.build +++ b/test cases/common/227 fs module/meson.build @@ -18,4 +18,7 @@ assert(fs.is_dir('subprojects'), 'Dir not detected correctly.') assert(not fs.is_dir('meson.build'), 'File detected as a dir.') assert(not fs.is_dir('nonexisting'), 'Bad path detected as a dir.') +assert(fs.is_dir('~'), 'expanduser not working') +assert(not fs.is_file('~'), 'expanduser not working') + subdir('subdir') |