21 lines
308 B
Plaintext
21 lines
308 B
Plaintext
proc setup {} {
|
|
assert_bash_exec "touch fixture1/t.pdf"; # Create temporary files
|
|
}; # setup()
|
|
|
|
|
|
proc teardown {} {
|
|
assert_bash_exec "rm fixture1/t.pdf"; # Remove temporary files
|
|
}; # teardown()
|
|
|
|
|
|
setup
|
|
|
|
|
|
assert_complete {"bar bar.d/" foo.d/ t.pdf} "acroread fixture1/"
|
|
|
|
|
|
sync_after_int
|
|
|
|
|
|
teardown
|