summaryrefslogtreecommitdiff
blob: 3a4f55351f2615dc9ef6d3a731bb4a55074bb602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
	<maintainer type="project">
		<email>haskell@gentoo.org</email>
		<name>Gentoo Haskell</name>
	</maintainer>
	<longdescription>
		With the function 'Test.Tasty.ExpectedFailure.expectFail' in the provided module
		"Test.Tasty.ExpectedFailure", you can mark that you expect test cases to fail,
		and not to pass.
		
		This can for example be used for test-driven development: Create the tests,
		mark them with 'Test.Tasty.ExpectedFailure.expectFail', and you can still push
		to the main branch, without your continuous integration branch failing.
		
		Once someone implements the feature or fixes the bug (maybe unknowingly), the
		test suite will tell him so, due to the now unexpectedly passing test, and he
		can remove the 'Test.Tasty.ExpectedFailure.expectFail' marker.
		
		The module also provides 'Test.Tasty.ExpectedFailure.ignoreTest' to avoid
		running a test. Both funtions are implemented via the more general
		'Test.Tasty.ExpectedFailure.warpTest', which is also provided.
	</longdescription>
</pkgmetadata>