Sha256: 260a00a63228fc6b064633b485b7d5ac5b3db655335c1b30a2d03399bbdaa528

Contents?: true

Size: 579 Bytes

Versions: 5

Compression:

Stored size: 579 Bytes

Contents

require 'test/unit'
require 'wx'

class BasicTests < Test::Unit::TestCase

  def test_versions
    assert_equal(Wx::WXRUBY_VERSION, "#{Wx::WXRUBY_MAJOR}.#{Wx::WXRUBY_MINOR}.#{Wx::WXRUBY_RELEASE}-#{Wx::WXRUBY_RELEASE_TYPE}")
    assert_equal(Wx::WXWIDGETS_VERSION, "#{Wx::WXWIDGETS_MAJOR_VERSION}.#{Wx::WXWIDGETS_MINOR_VERSION}.#{Wx::WXWIDGETS_RELEASE_NUMBER}")
  end

  def test_platform
    assert(/WX[A-Z]+/ =~ Wx::PLATFORM)
  end

end

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

Version data entries

5 entries across 5 versions & 1 rubygems

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