view tests/dirname.test @ 1726:26170eb7685d draft

Fix thinko (don't &toybuf to get scratch space) and add -v option.
author Rob Landley <rob@landley.net>
date Mon, 09 Mar 2015 15:06:10 -0500
parents 8700cbe1cb29
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" "" ""