File: copy.test

package info (click to toggle)
snack 2.2.10-dfsg1-9%2Bsqueeze1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,020 kB
  • ctags: 3,550
  • sloc: ansic: 35,473; sh: 8,557; tcl: 1,065; python: 701; makefile: 566
file content (32 lines) | stat: -rw-r--r-- 729 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Commands covered: sound copy
#

package require -exact snack 2.2

if {[lsearch [namespace children] ::tcltest] == -1} {
    package require tcltest
    namespace import ::tcltest::*
}

test copy-1.1 {copy command} {
  set s1 [snack::sound snd1 -load ex1.wav]
  set s2 [snack::sound snd2]
  $s2 copy $s1 -start 5000 -end 10000
  set res [list [$s2 sample 0] [$s2 sample 5000]]
  $s1 destroy
  $s2 destroy
  set res
} {7443 779}

test copy-1.2 {copy command, missing argument for -end option} {
  set s1 [snack::sound snd1 -load ex1.wav]
  set s2 [snack::sound snd2]
  catch {$s2 copy $s1 -start 5000 -end} msg
  $s1 destroy
  $s2 destroy
  set msg
} {No argument given for -end option}

# cleanup
::tcltest::cleanupTests
return