After using RSpec for several projects, I\'m giving minitest/unit a go. I\'m liking it so far, but I miss using describe/context blocks to group my tests/specs in a logical way.
I prefer this way (only a little bit) but I think it easier to follow:
class ConventionalNameTest < ActiveSupport::TestCase
class ContextTest < ConventionalNameTest
# so much stuff...
end
class AnotherContextTest < ConventionalNameTest
# and some more...
end