File: memfs.rb

package info (click to toggle)
ruby-simple-navigation 4.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 488 kB
  • ctags: 255
  • sloc: ruby: 3,693; makefile: 3
file content (7 lines) | stat: -rw-r--r-- 132 bytes parent folder | download
1
2
3
4
5
6
7
require 'memfs'

RSpec.configure do |config|
  config.around(memfs: true) do |example|
    MemFs.activate { example.run }
  end
end