fixing most of the mom tests
This commit is contained in:
11
test/support/output.rb
Normal file
11
test/support/output.rb
Normal file
@ -0,0 +1,11 @@
|
||||
module Output
|
||||
def class_list(all)
|
||||
str = all.join(", ").gsub("Risc::","").to_s
|
||||
str = str.split(",").each_slice(5).collect { |line| line.join(",") + ","}
|
||||
str[0] = "[#{str[0]}"
|
||||
str[-1] = "#{str[-1]}]"
|
||||
ret = ""
|
||||
str.each_with_index { |line,index| ret += " #{line} ##{index*5 + 5}\n"}
|
||||
ret
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user