1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-17 08:01:36 +00:00
freebsd-ports/devel/py-tapi/Makefile
Kubilay Kocak ad144fc7dc devel/py-tapi: Framework for testing APIs [NEW PORT]
Tapi is a tool to automate the testing of your Application Programmer Interfaces
(APIs). Features:

 * Test you API without writing any code (only edit a json file)
 * Test you APIs in a much more 'natural' way by specifying urls/verbs and what
   the output should be
 * Verify anything from response status codes, headers, body content etc
 * Also allows verification by issuing another API call to a different endpoint
   to ensure a prior API call worked
 * Execute arbitrary python scripts to populate request paramaters e.g. custom
   headers
 * Execute arbitrary python scripts to verify response from endpoint is valid
 * Tests your APIs using your own APIs

WWW: https://github.com/jimmyislive/tapi/

PR:		ports/186342
Submitted by:	Johannes Jost Meixner <xmj@chaot.net>
2014-02-02 09:27:42 +00:00

21 lines
380 B
Makefile

# Created by: Johannes Meixner <xmj@chaot.net>
# $FreeBSD$
PORTNAME= tapi
PORTVERSION= 0.1.7
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= Tapi-${PORTVERSION}
MAINTAINER= xmj@chaot.net
COMMENT= Framework for testing APIs
LICENSE= MIT
USE_PYTHON= yes
USE_PYDISTUTILS= yes
PYDISTUTILS_AUTOPLIST= yes
.include <bsd.port.mk>