Sha256: b96ebbff381d02ced20e803d18f0cbc681da3677f7e1c2e8769aa4bcd71152c8

Contents?: true

Size: 909 Bytes

Versions: 6

Compression:

Stored size: 909 Bytes

Contents

# frozen_string_literal: true
require 'gir_ffi_test_helper'

GirFFI.setup :Gst
Gst.init []

# Tests behavior of objects in the generated Gio namespace.
describe 'the generated Gst module' do
  describe 'Gst::FakeSink' do
    let(:instance) { Gst::ElementFactory.make('fakesink', 'sink') }

    it 'allows the handoff signal to be connected and emitted' do
      a = nil
      instance.signal_connect('handoff') { a = 10 }
      GObject.signal_emit(instance, 'handoff')
      a.must_equal 10
    end

    it 'correctly fetches the name' do
      instance.name.must_equal 'sink'
    end
  end

  describe 'Gst::AutoAudioSink' do
    let(:instance) { Gst::ElementFactory.make('autoaudiosink', 'audiosink') }

    it 'correctly fetches the name' do
      skip 'Audio sink was not created' unless instance
      instance.get_name.must_equal 'audiosink'
      instance.name.must_equal 'audiosink'
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gir_ffi-0.11.1 test/integration/generated_gst_test.rb
gir_ffi-0.10.2 test/integration/generated_gst_test.rb
gir_ffi-0.10.1 test/integration/generated_gst_test.rb
gir_ffi-0.10.0 test/integration/generated_gst_test.rb
gir_ffi-0.10.0.pre1 test/integration/generated_gst_test.rb
gir_ffi-0.9.5 test/integration/generated_gst_test.rb