summaryrefslogtreecommitdiff
path: root/test/dl/test_cparser.rb
blob: 3be727a7597aff0aa51d0fc77f600bd09aa49589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require_relative 'test_base'

require 'dl/cparser'

module DL
  class TestCParser < TestBase
    include DL::CParser

    def test_uint_ctype
      assert_equal(-DL::TYPE_INT, parse_ctype('uint'))
    end
  end
end