Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/svenfuchs/test_declarative
Simply adds a declarative test method syntax to test/unit
https://github.com/svenfuchs/test_declarative
Last synced: about 2 months ago
JSON representation
Simply adds a declarative test method syntax to test/unit
- Host: GitHub
- URL: https://github.com/svenfuchs/test_declarative
- Owner: svenfuchs
- License: mit
- Created: 2010-04-04T12:24:46.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2023-08-22T14:38:13.000Z (over 1 year ago)
- Last Synced: 2024-10-26T22:39:41.312Z (2 months ago)
- Language: Ruby
- Homepage:
- Size: 18.6 KB
- Stars: 2
- Watchers: 4
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: MIT-LICENSE
Awesome Lists containing this project
README
# TestDeclarative
[![CI](https://github.com/svenfuchs/test_declarative/actions/workflows/ci.yml/badge.svg)](https://github.com/svenfuchs/test_declarative/actions/workflows/ci.yml)
Simply adds a declarative test method syntax to test/unit.
```ruby
require 'test_declarative'class MyTest < Test::Unit::TestCase
test "your test description" do
# your test code
end
end
```