e08dd5c614
Heckle is a mutation tester. It modifies your code and runs your tests to make sure they fail. The idea is that if code can be changed and your tests don't notice, either that code isn't being covered or it doesn't do anything. It's like hiring a white-hat hacker to try to break into your server and making sure you detect it. You learn the most by trying to break things and watching the outcome in an act of unit test sadism.
16 lines
491 B
Makefile
16 lines
491 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2008/04/04 15:17:14 jlam Exp $
|
|
|
|
DISTNAME= heckle-1.4.1
|
|
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://seattlerb.rubyforge.org/heckle/
|
|
COMMENT= Code mutation tester for Ruby
|
|
|
|
DEPENDS+= hoe>=1.2.1:../../devel/hoe
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-ruby2ruby>=1.1.0:../../devel/ruby2ruby
|
|
DEPENDS+= ZenTest>=3.5.2:../../devel/ZenTest
|
|
|
|
.include "../../misc/rubygems/rubygem.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|