Index: head/devel/Makefile =================================================================== --- head/devel/Makefile +++ head/devel/Makefile @@ -4395,6 +4395,7 @@ SUBDIR += py-boto SUBDIR += py-botocore SUBDIR += py-bsd + SUBDIR += py-btest SUBDIR += py-buildbot SUBDIR += py-buildbot-console-view SUBDIR += py-buildbot-grid-view Index: head/devel/py-btest/Makefile =================================================================== --- head/devel/py-btest/Makefile +++ head/devel/py-btest/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= btest +DISTVERSION= 0.58 +CATEGORIES= devel +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= mshirk@daemon-security.com +COMMENT= Simple driver for basic unit tests + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= python +USE_PYTHON= distutils autoplist concurrent + +NO_ARCH= YES + +.include Index: head/devel/py-btest/distinfo =================================================================== --- head/devel/py-btest/distinfo +++ head/devel/py-btest/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538170397 +SHA256 (btest-0.58.tar.gz) = 632f88977e1091cec2edf853826c8b0233f6839a6bf490217e3947d8ba342402 +SIZE (btest-0.58.tar.gz) = 68811 Index: head/devel/py-btest/pkg-descr =================================================================== --- head/devel/py-btest/pkg-descr +++ head/devel/py-btest/pkg-descr @@ -0,0 +1,10 @@ +The btest is a simple framework for writing unit tests. Freely +borrowing some ideas from other packages, it's main objective is to +provide an easy-to-use, straightforward driver for a suite of +shell-based tests. Each test consists of a set of command lines that +will be executed, and success is determined based on their exit +codes. btest comes with some additional tools that can be used +within such tests to compare output against a previously established +baseline. + +WWW: https://github.com/bro/btest/