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.
ok {1+1} == 2
assert_equal 2, 1+1
expect(1+1).to eq 2
See All 1177 Episodes of "RubyFlow"