Sha256: 251696f834c6bfe3b6eb9225aaf7ba2491a132e04a850e33196b0b668a1f6468

Contents?: true

Size: 632 Bytes

Versions: 5

Compression:

Stored size: 632 Bytes

Contents

require 'test/unit'
require 'wx'

class AppReturnsFalseFromInit < Wx::App
    attr_reader :did_call_on_init, :the_app_name
    
    def on_init
        @did_call_on_init = true
        @the_app_name = self.get_app_name
        return false
    end
    
end

class TestApp < Test::Unit::TestCase
  def test_return_false_from_init
    o = AppReturnsFalseFromInit.new
    o.run
    assert(o.did_call_on_init, "didn't call on_init?")
    assert_equal("wxruby", o.the_app_name)
  end
  
end

if $0 == __FILE__
  require 'test/unit/ui/console/testrunner'
  Test::Unit::UI::Console::TestRunner.run(TestApp)
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
wxruby3-0.9.0.pre.beta.10-x64-mingw-ucrt tests/testapp_noframe.rb
wxruby3-0.9.0.pre.beta.9-x64-mingw-ucrt tests/testapp_noframe.rb
wxruby3-0.9.0.pre.beta.8-x64-mingw-ucrt tests/testapp_noframe.rb
wxruby3-0.9.0.pre.beta.2-x64-mingw-ucrt-3.2-3.2.2 tests/testapp_noframe.rb
wxruby3-0.9.0.pre.beta.1-x64-mingw-ucrt-3.2 tests/testapp_noframe.rb