File: source-bash%2B-std.t

package info (click to toggle)
git-subrepo 0.4.9-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,552 kB
  • sloc: sh: 7,074; makefile: 273; perl: 226
file content (17 lines) | stat: -rw-r--r-- 491 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash

source test/setup

source bash+ :std

ok "$(bash+:can use)"         'use is imported'
ok "$(bash+:can die)"         'die is imported'
ok "$(bash+:can warn)"        'warn is imported'

ok "$(! bash+:can import)"    'import is not imported'
ok "$(! bash+:can main)"      'main is not imported'
ok "$(! bash+:can fcopy)"     'fcopy is not imported'
ok "$(! bash+:can findlib)"   'findlib is not imported'
ok "$(! bash+:can can)"       'can is not imported'

done_testing 8