2019-02-08 23:03:23 +02:00
|
|
|
module Parfait
|
|
|
|
def self.default_test_options
|
2019-02-09 12:44:35 +02:00
|
|
|
{
|
|
|
|
factory: 20,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
def self.interpreter_test_options
|
|
|
|
{
|
|
|
|
factory: 50,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
def self.full_test_options
|
|
|
|
{
|
|
|
|
factory: 1024,
|
|
|
|
}
|
2019-02-08 23:03:23 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module RubyX
|
|
|
|
def self.default_test_options
|
2019-02-09 12:44:35 +02:00
|
|
|
{
|
|
|
|
parfait: Parfait.default_test_options
|
|
|
|
}
|
|
|
|
end
|
|
|
|
def self.full_test_options
|
|
|
|
{
|
|
|
|
parfait: Parfait.full_test_options
|
|
|
|
}
|
|
|
|
end
|
|
|
|
def self.interpreter_test_options
|
|
|
|
{
|
|
|
|
parfait: Parfait.interpreter_test_options,
|
2019-03-04 10:24:08 +02:00
|
|
|
load_parfait: false ,
|
2019-02-09 12:44:35 +02:00
|
|
|
platform: :interpreter
|
|
|
|
}
|
2019-02-08 23:03:23 +02:00
|
|
|
end
|
|
|
|
end
|