We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cc89242 + e5f2dec commit 313bf25Copy full SHA for 313bf25
1 file changed
subpackages/assertions/README.md
@@ -0,0 +1,32 @@
1
+This module contains the following assertions:
2
+
3
+- shouldBeTrue
4
+- shouldBeFalse
5
+- shouldEqual
6
+- shouldNotEqual
7
+- shouldBeNull
8
+- shouldNotBeNull
9
+- shouldBeIn
10
+- shouldNotBeIn
11
+- shouldThrow
12
+- shouldThrowExactly
13
+- shouldNotThrow
14
+- shouldThrowWithMessage
15
+- shouldApproxEqual
16
+- shouldBeEmpty
17
+- shouldNotBeEmpty
18
+- shouldBeGreaterThan
19
+- shouldBeSmallerThan
20
+- shouldBeSameSetAs
21
+- shouldNotBeSameSetAs
22
+- shouldBeSameJsonAs
23
+- shouldBeBetween
24
+- shouldApprox
25
26
+It also contains the `should` -testing DSL. I.e.:
27
+```
28
+1.should == 1;
29
+1.should.not == 2;
30
+1.should in [1, 2, 3];
31
+4.should.not in [1, 2, 3];
32
0 commit comments