File: README.md

package info (click to toggle)
ruby-test-declarative 0.0.6-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 72 kB
  • sloc: ruby: 35; makefile: 4
file content (15 lines) | stat: -rw-r--r-- 361 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# TestDeclarative

[![Build Status](https://api.travis-ci.org/svenfuchs/test_declarative.svg?branch=master)](https://travis-ci.org/svenfuchs/test_declarative)

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