view tests/dirname.test @ 1683:f5414b91e639 draft

netcfg is being removed, but shows up in the toybox roadmap.
author Elliott Hughes <enh@google.com>
date Sat, 07 Feb 2015 19:51:27 -0600
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" "" ""