Test equality.
()
| 119 | |
| 120 | |
| 121 | def test_eq() -> None: |
| 122 | """Test equality.""" |
| 123 | assert Content("foo") == Content("foo") |
| 124 | assert Content("foo") == "foo" |
| 125 | assert Content("foo") != Content("bar") |
| 126 | assert Content("foo") != "bar" |
| 127 | |
| 128 | |
| 129 | def test_add() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…