An open API service indexing awesome lists of open source software.

https://github.com/jlong/abstract_testcases

An older Rails plugin that adds support for abstract test cases
https://github.com/jlong/abstract_testcases

Last synced: about 2 months ago
JSON representation

An older Rails plugin that adds support for abstract test cases

Awesome Lists containing this project

README

          

Abstract TestCases for Rails
============================

This plugin allows you to suppress the "No tests were specified" failure for
abstract test cases. To define an abstract test case, simply use the
convenient class method:

class MyAbstractTestCase < Test::Unit::TestCase

# This is an abstract test case
self.abstract_testcase = true

end

The abstract test case plugin is Copyright (c) John W. Long, 2007 and is
available under the same license as Rails.