annotation Testify::Test::Tags
Overview
Tags
can be used to group tests and specs,
allowing to only run a subset of tests and/or specs when providing a --tag
argument to the spec runner.
Can be tagged:
- classes inherited from the
Test
class (equivalent ofdescribe
block); - and all
test_
methods (equivalent ofit
block); - and of course the blocks (with the
tags
argument):describe
,context
andit
.
See Tagging Specs in the stdlib.