view scripts/test/dirname.test @ 911:accabaaac666

stat: Separate stat and statfs
author Felix Janda <felix.janda@posteo.de>
date Sun, 26 May 2013 09:48:13 +0200
parents 786841fdb1e0
children
line wrap: on
line source

#!/bin/bash

[ -f testing.sh ] && . testing.sh

#testing "name" "command" "result" "infile" "stdin"

testing "dirname /-only" "dirname ///////" "/\n" "" ""
testing "dirname trailing /" "dirname a//////" ".\n" "" ""
testing "dirname combined" "dirname /////a///b///c///d/////" "/////a///b///c\n" "" ""
testing "dirname /a/" "dirname /////a///" "/\n" "" ""