Sha256: bb99ac99777b3071bb269769b0d6d1e2b71d8627faa6c85716c1b8ac40b52a46

Contents?: true

Size: 1.02 KB

Versions: 7

Compression:

Stored size: 1.02 KB

Contents

# Copyright (C) 2014-2023  Ruby-GNOME Project Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

class TestChildProxy < Test::Unit::TestCase
  def setup
    @capsfilter = Gst::ElementFactory.make("capsfilter")
  end

  def test_property
    any_caps = Gst::Caps.any
    @capsfilter.caps = any_caps
    assert_equal(any_caps.to_s, @capsfilter.caps.to_s)
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
gstreamer-4.2.4 test/test-child-proxy.rb
gstreamer-4.2.3 test/test-child-proxy.rb
gstreamer-4.2.2 test/test-child-proxy.rb
gstreamer-4.2.1 test/test-child-proxy.rb
gstreamer-4.2.0 test/test-child-proxy.rb
gstreamer-4.1.9 test/test-child-proxy.rb
gstreamer-4.1.8 test/test-child-proxy.rb