toybox/tests/dirname.test
<<
>>
Prefs
   1#!/bin/bash
   2
   3[ -f testing.sh ] && . testing.sh
   4
   5#testing "name" "command" "result" "infile" "stdin"
   6
   7testing "/-only" "dirname ///////" "/\n" "" ""
   8testing "trailing /" "dirname a//////" ".\n" "" ""
   9testing "combined" "dirname /////a///b///c///d/////" "/////a///b///c\n" "" ""
  10testing "/a/" "dirname /////a///" "/\n" "" ""
  11testing "multiple" "dirname hello/a world/b" "hello\nworld\n" "" ""
  12