openbsd-ports/devel/ruby-mocha/Makefile
bernd 812a506837 Initial import of ruby-mocha-0.5.6.
Mocha is a library for mocking and stubbing using a syntax like that of
JMock, and SchMock. Most commonly Mocha is used in conjunction with
Test::Unit, but it can be used in other contexts.

One of its main advantages is that it allows you to mock and stub methods
on real (non-mock) classes and instances. You can for example stub
ActiveRecord instance methods like create, save, destroy and even class
methods like find to avoid hitting the database in unit tests.

Mocha provides a unified, simple and readable syntax for both traditional
mocking and for mocking with real objects.
2008-02-02 11:08:45 +00:00

32 lines
605 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2008/02/02 11:08:45 bernd Exp $
COMMENT= ruby library for mocking and stubbing
DISTNAME= mocha-0.5.6
PKGNAME= ruby-${DISTNAME}
CATEGORIES= devel
HOMEPAGE= http://mocha.rubyforge.org/
# MIT License
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${MASTER_SITE_RUBYFORGE:=mocha/}
MODULES= lang/ruby
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= ::devel/ruby-rake
CONFIGURE_STYLE=ruby gem
PKG_ARCH= *
do-regress:
@cd ${WRKBUILD} && ${LOCALBASE}/bin/rake test_all
.include <bsd.port.mk>