Sha256: 4d152fd2ced2f9f8346de88e94bd97d2ca7cbb6e493ad053890cae9583163fd2

Contents?: true

Size: 771 Bytes

Versions: 2

Compression:

Stored size: 771 Bytes

Contents

# frozen_string_literal: true

require 'gir_ffi_test_helper'

# Tests behavior of objects in the generated GtkSource namespace.
describe 'The generated GtkSource module' do
  before do
    begin
      GirFFI.setup :GtkSource
    rescue
      skip 'GtkSource GIR not available'
    end
  end

  describe 'GtkSource::CompletionContext' do
    let(:instance) { GtkSource::CompletionContext.new }

    it 'allows adding proposals' do
      proposals = [
        GtkSource::CompletionItem.new('Proposal 1', 'Proposal 1', nil, 'blah 1'),
        GtkSource::CompletionItem.new('Proposal 2', 'Proposal 2', nil, 'blah 2'),
        GtkSource::CompletionItem.new('Proposal 3', 'Proposal 3', nil, 'blah 3')
      ]
      instance.add_proposals nil, proposals, true
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gir_ffi-0.11.3 test/integration/generated_gtk_source_test.rb
gir_ffi-0.11.2 test/integration/generated_gtk_source_test.rb