Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
```