about summary refs log tree commit homepage
path: root/test/test_player.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_player.rb')
-rw-r--r--test/test_player.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/test_player.rb b/test/test_player.rb
index 18a8a9e..78feff9 100644
--- a/test/test_player.rb
+++ b/test/test_player.rb
@@ -34,4 +34,14 @@ class TestPlayer < Minitest::Unit::TestCase
     hash = @player.to_hsh
     assert_equal({"socket" => @path}, hash)
   end
+
+  def test_player_serialize_format
+    fmt = DTAS::Format.new
+    fmt.type = "f32"
+    fmt.rate = 48000
+    player = DTAS::Player.load("format" => fmt.to_hsh)
+    fhash = player.to_hsh["format"]
+    assert_equal "f32", fhash["type"]
+    assert_equal 48000, fhash["rate"]
+  end
 end