rubyx/test/support/options.rb
Torsten Rüger 02261ad79d changing factory size per factory
Before it was one class variable, but ints and messages are not created in equal amounts.
2019-08-24 09:46:33 +03:00

41 lines
669 B
Ruby

module Parfait
def self.default_test_options
{
Message: 30,
Integer: 30,
}
end
def self.interpreter_test_options
{
Message: 50,
Integer: 50,
}
end
def self.full_test_options
{
Message: 300,
Integer: 300,
}
end
end
module RubyX
def self.default_test_options
{
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,
load_parfait: false ,
platform: :interpreter
}
end
end