Sha256: 3909e2cb171704fda3d04c2abe23624cd103246f5bfa258ecbb419c240af43e1

Contents?: true

Size: 316 Bytes

Versions: 6

Compression:

Stored size: 316 Bytes

Contents

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

6 entries across 6 versions & 1 rubygems

Version Path
wxruby3-0.9.0.pre.rc.3-x64-mingw-ucrt tests/test_dialog.rb
wxruby3-0.9.0.pre.rc.2-x64-mingw-ucrt tests/test_dialog.rb
wxruby3-0.9.0.pre.rc.1-x64-mingw-ucrt tests/test_dialog.rb
wxruby3-0.9.0.pre.beta.14-x64-mingw-ucrt tests/test_dialog.rb
wxruby3-0.9.0.pre.beta.13-x64-mingw-ucrt tests/test_dialog.rb
wxruby3-0.9.0.pre.beta.11-x64-mingw-ucrt tests/test_dialog.rb