Oktest 1.3.0 released
I released Oktest 1.3.0.
Oktest is a new-style testing library for Ruby.
You can write ok {1+1} == 2
with Oktest instead of assert_equal 2, 1+1
or expect(1+1).to eq 2
.
In addition, it is very easy to test JSON data by JSON matcher in Oktest.
See CHANGES.md for changes.
Post a comment