File: helpers.rb

package info (click to toggle)
ruby-file-validators 3.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 388 kB
  • sloc: ruby: 1,601; makefile: 10
file content (7 lines) | stat: -rw-r--r-- 133 bytes parent folder | download
1
2
3
4
5
6
7
# frozen_string_literal: true

module Helpers
  def fakeio(content = 'file', **options)
    FakeIO.new(content, **options)
  end
end