lib/rgot.rb in rgot-1.2.0 vs lib/rgot.rb in rgot-1.3.0

- old
+ new

@@ -6,15 +6,17 @@ autoload :M, 'rgot/m' autoload :T, 'rgot/t' autoload :B, 'rgot/b' autoload :PB, 'rgot/pb' autoload :BenchmarkResult, 'rgot/benchmark_result' + autoload :F, 'rgot/f' autoload :ExampleParser, 'rgot/example_parser' OptionError = Class.new(StandardError) InternalTest = Struct.new(:module, :name) InternalBenchmark = Struct.new(:module, :name) InternalExample = Struct.new(:module, :name) + InternalFuzzTarget = Struct.new(:module, :name) ExampleOutput = Struct.new(:name, :output) class << self def now Process.clock_gettime(Process::CLOCK_MONOTONIC)