summary refs log tree commit diff
path: root/pkgs/development/ruby-modules/testing
diff options
context:
space:
mode:
authorJudson <nyarly@gmail.com>2017-06-09 09:04:33 -0700
committerJudson <nyarly@gmail.com>2017-06-09 09:04:33 -0700
commit964d9b7a067fc48d9774c5bff37d7fff41158f5a (patch)
tree5d5ace6a96680f7fdfa88efe93a62847ce8097dd /pkgs/development/ruby-modules/testing
parent0bde4071fcd056172405005e7c99a56287e3477c (diff)
downloadnixpkgs-964d9b7a067fc48d9774c5bff37d7fff41158f5a.tar
nixpkgs-964d9b7a067fc48d9774c5bff37d7fff41158f5a.tar.gz
nixpkgs-964d9b7a067fc48d9774c5bff37d7fff41158f5a.tar.bz2
nixpkgs-964d9b7a067fc48d9774c5bff37d7fff41158f5a.tar.lz
nixpkgs-964d9b7a067fc48d9774c5bff37d7fff41158f5a.tar.xz
nixpkgs-964d9b7a067fc48d9774c5bff37d7fff41158f5a.tar.zst
nixpkgs-964d9b7a067fc48d9774c5bff37d7fff41158f5a.zip
Made gemdir handling into a common function
Diffstat (limited to 'pkgs/development/ruby-modules/testing')
-rw-r--r--pkgs/development/ruby-modules/testing/tap-support.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/ruby-modules/testing/tap-support.nix b/pkgs/development/ruby-modules/testing/tap-support.nix
index 3147ed066c1..555ce89d833 100644
--- a/pkgs/development/ruby-modules/testing/tap-support.nix
+++ b/pkgs/development/ruby-modules/testing/tap-support.nix
@@ -4,6 +4,7 @@ let
 
   testLine = report: "${okStr report} ${toString (report.index + 1)} ${report.description}" + testDirective report + testYaml report;
 
+  # These are part of the TAP spec, not yet implemented.
   testDirective = report: "";
 
   testYaml = report: "";