File: explicitly_require_minitest

package info (click to toggle)
ruby-image-science 1.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 192 kB
  • sloc: ruby: 497; makefile: 9
file content (21 lines) | stat: -rw-r--r-- 578 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Gunnar Wolf <gwolf@gwolf.org>
Date: Tue, 1 Oct 2013 12:01:34 -0500
Subject: Explicitly require "minitest" when running the tests
Forwarded: not-needed

---
 test/test_image_science.rb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/test/test_image_science.rb b/test/test_image_science.rb
index 988fe6b..827725e 100644
--- a/test/test_image_science.rb
+++ b/test/test_image_science.rb
@@ -1,6 +1,7 @@
 require 'tmpdir'
 dir = Dir.mktmpdir "image_science."
 ENV['INLINEDIR'] = dir
+require 'minitest'
 Minitest.after_run do
   require 'fileutils'
   FileUtils.rm_rf dir