about summary refs log tree commit homepage
path: root/test/test_format_change.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_format_change.rb')
-rw-r--r--test/test_format_change.rb12
1 files changed, 4 insertions, 8 deletions
diff --git a/test/test_format_change.rb b/test/test_format_change.rb
index ed0e7a2..b6edd7e 100644
--- a/test/test_format_change.rb
+++ b/test/test_format_change.rb
@@ -13,15 +13,12 @@ class TestFormatChange < Minitest::Unit::TestCase
       d = "#{dir}/dump.$CHANNELS.$RATE"
       f44100 = File.open("#{dir}/dump.2.44100", IO::RDWR|IO::CREAT)
       f88200 = File.open("#{dir}/dump.2.88200", IO::RDWR|IO::CREAT)
-      s.preq("sink ed dump active=true command='cat > #{d}'")
-      assert_equal "OK", s.readpartial(666)
+      s.req_ok("sink ed dump active=true command='cat > #{d}'")
       noise, len = tmp_noise
-      s.preq(%W(enq #{noise.path}))
-      assert_equal "OK", s.readpartial(666)
+      s.req_ok(%W(enq #{noise.path}))
       wait_files_not_empty(default_pid, f44100)
 
-      s.preq("format rate=88200")
-      assert_equal "OK", s.readpartial(666)
+      s.req_ok("format rate=88200")
 
       wait_files_not_empty(f88200)
 
@@ -29,8 +26,7 @@ class TestFormatChange < Minitest::Unit::TestCase
 
       Timeout.timeout(len) do
         begin
-          s.preq("current")
-          cur = YAML.load(s.readpartial(6666))
+          cur = YAML.load(s.req("current"))
         end while cur["sinks"] && sleep(0.01)
       end