Codebase list ruby-fxruby / 0934bbd0-cd2e-4349-844d-928b8d23484a/main test / TC_FXXBMImage.rb
0934bbd0-cd2e-4349-844d-928b8d23484a/main

Tree @0934bbd0-cd2e-4349-844d-928b8d23484a/main (Download .tar.gz)

TC_FXXBMImage.rb @0934bbd0-cd2e-4349-844d-928b8d23484a/mainraw · history · blame

require 'fox16'
require 'test/unit'
require 'testcase'

class TC_FXXBMImage < Fox::TestCase
  include Fox

  def setup
    super(self.class.name)
  end

  def test_fileExt
    assert_equal("xbm", FXXBMImage.fileExt)
  end
end