8
9
10
11
12
13
14
15
16
17
18
|
# File 'lib/test_bench/output/controls/detail.rb', line 8
def self.random
details = [
TestBench::Output::Detail.on,
TestBench::Output::Detail.off,
TestBench::Output::Detail.failure
]
index = Random.integer % details.count
details[index]
end
|