Sha256: 5d1b87b22e85c81c4ac5eef3e26c6abc30f90831331a951bd886e41121ba9204

Contents?: true

Size: 424 Bytes

Versions: 7

Compression:

Stored size: 424 Bytes

Contents

# Copyright (c) 2023 M.J.N. Corino, The Netherlands
#
# This software is released under the MIT license.

require_relative './lib/wxapp_runner'

class DialogTests < Test::Unit::TestCase

  class TestDialog < Wx::Dialog
    def initialize
      super()
    end
  end

  def test_dialog_inheritance
    dlg = TestDialog.new
    assert_kind_of(Wx::Dialog, dlg)
    assert_kind_of(Wx::Window, dlg)
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
wxruby3-0.9.7-x64-mingw-ucrt tests/test_dialog.rb
wxruby3-0.9.5-x64-mingw-ucrt tests/test_dialog.rb
wxruby3-0.9.4-x64-mingw-ucrt tests/test_dialog.rb
wxruby3-0.9.3-x64-mingw-ucrt tests/test_dialog.rb
wxruby3-0.9.2-x64-mingw-ucrt tests/test_dialog.rb
wxruby3-0.9.1-x64-mingw-ucrt tests/test_dialog.rb
wxruby3-0.9.0-x64-mingw-ucrt tests/test_dialog.rb