File: test_helper.rb

package info (click to toggle)
ruby-zip 3.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 11,120 kB
  • sloc: ruby: 9,958; makefile: 23
file content (16 lines) | stat: -rw-r--r-- 300 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require 'minitest/autorun'
require 'zip'
require 'gentestfiles'
require 'forwardable'
require 'pathname'

TestFiles.create_test_files
TestZipFile.create_test_zips

Minitest.after_run do
  FileUtils.rm_rf('test/data/generated')
end

Minitest::Test.make_my_diffs_pretty!