mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
14 lines
215 B
Ruby
14 lines
215 B
Ruby
|
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
|