1config BR2_PACKAGE_BATS_ASSERT
2	bool "bats-assert"
3	select BR2_PACKAGE_BATS_SUPPORT # runtime
4	help
5	  bats-assert is a helper library providing common assertions
6	  for Bats.
7
8	  In the context of this project, an assertion is a function
9	  that perform a test and returns 1 on failure or 0 on success.
10	  To make debugging easier, the assertion also outputs relevant
11	  information on failure. The output is formatted for
12	  readability. To make assertions usable outside of @test
13	  blocks, the output is sent to stderr.
14
15	  https://github.com/bats-core/bats-assert
16