about summary refs log tree commit homepage
path: root/test/helper.rb
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2014-07-06 22:45:23 +0000
committerEric Wong <e@80x24.org>2014-07-06 22:45:23 +0000
commitaf4979ef2d4c7683a2b927686beaca74ce789f91 (patch)
tree5b05d0784872cdc17fedf3e1476b88734b599b13 /test/helper.rb
parent3471463325be6c990b3abd18b4d34f723440d19a (diff)
downloaddtas-af4979ef2d4c7683a2b927686beaca74ce789f91.tar.gz
This allows the same sound to be reused in tests.
Diffstat (limited to 'test/helper.rb')
-rw-r--r--test/helper.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/helper.rb b/test/helper.rb
index 1812e99..397d2c3 100644
--- a/test/helper.rb
+++ b/test/helper.rb
@@ -99,3 +99,11 @@ class Dir
     end
   end
 end unless Dir.respond_to?(:mktmpdir)
+
+def guitar_pluck(outfile)
+  outfile =~ %r{\A[\w\./-]+\z} or raise ArgumentError, "bad chars"
+  cmd = '(for n in E2 A2 D3 G3 B3 E4; do '\
+         'sox -n -ts32 -c2 -r44100 - synth 4 pluck $n; done ) | ' \
+         "sox -ts32 -c2 -r44100 - #{outfile}"
+  assert_equal(true, system(cmd), cmd)
+end