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
- Host: GitHub
- URL: https://github.com/jlong/abstract_testcases
- Owner: jlong
- License: mit
- Created: 2009-09-22T03:59:10.000Z (over 16 years ago)
- Default Branch: master
- Last Pushed: 2009-09-22T04:00:27.000Z (over 16 years ago)
- Last Synced: 2025-06-19T01:39:14.526Z (12 months ago)
- Language: Ruby
- Homepage:
- Size: 70.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
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.