class TestCaps::TestConstructor

Public Instance Methods

test_any() click to toggle source
# File gstreamer/test/test-caps.rb, line 19
def test_any
  assert_equal("ANY", Gst::Caps.any.to_s)
end
test_empty() click to toggle source
# File gstreamer/test/test-caps.rb, line 23
def test_empty
  assert_equal("EMPTY", Gst::Caps.empty.to_s)
end
test_media_type() click to toggle source
# File gstreamer/test/test-caps.rb, line 27
def test_media_type
  assert_equal("audio/ogg", Gst::Caps.new("audio/ogg").to_s)
end