Files
tinyUSB/test/unit-test/vendor/ceedling/lib/ceedling/cmock_builder.rb
hathach 3623ba1884 fix trailing space and new line
temporarily disable codespell
2023-03-17 16:12:49 +07:00

16 lines
177 B
Ruby

require 'cmock'
class CmockBuilder
attr_accessor :cmock
def setup
@cmock = nil
end
def manufacture(cmock_config)
@cmock = CMock.new(cmock_config)
end
end