about summary refs log tree commit diff
path: root/pkgs/applications/networking/soapui
diff options
context:
space:
mode:
authorFabian Möller <fabianm88@gmail.com>2022-01-23 21:08:10 +0100
committerFabian Möller <fabianm88@gmail.com>2022-01-23 21:08:10 +0100
commit4329d79dbab9f9ae6654c59ac428b8935eb7f7c5 (patch)
tree5b185c93081c8667de8a7cbf7bd21f6a019761fe /pkgs/applications/networking/soapui
parentfd6b95db2263e80269834e2508302de4aed025d7 (diff)
nixos/tests: link tests to their packages
Diffstat (limited to 'pkgs/applications/networking/soapui')
-rw-r--r--pkgs/applications/networking/soapui/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/networking/soapui/default.nix b/pkgs/applications/networking/soapui/default.nix
index 96d3de98d891e..6839b6be67291 100644
--- a/pkgs/applications/networking/soapui/default.nix
+++ b/pkgs/applications/networking/soapui/default.nix
@@ -1,4 +1,4 @@
-{ fetchurl, lib, stdenv, writeText, jdk, makeWrapper }:
+{ fetchurl, lib, stdenv, writeText, jdk, makeWrapper, nixosTests }:
 
 stdenv.mkDerivation rec {
   pname = "soapui";
@@ -46,6 +46,8 @@ stdenv.mkDerivation rec {
     '')
   ];
 
+  passthru.tests = { inherit (nixosTests) soapui; };
+
   meta = with lib; {
     description = "The Most Advanced REST & SOAP Testing Tool in the World";
     homepage = "https://www.soapui.org/";