backtrace_fabricator.rb 194 Bytes
Fabricator :backtrace do
  lines(count: 99) do
    {
      number: rand(999),
      file:   "/path/to/file/#{SecureRandom.hex(4)}.rb",
      method: ActiveSupport.methods.sample
    }
  end
end