Color.red == LeanInductiveValue("Color", "red", 0, ()).
(example_lib)
| 182 | |
| 183 | |
| 184 | def test_nullary_equality(example_lib): |
| 185 | """Color.red == LeanInductiveValue("Color", "red", 0, ()).""" |
| 186 | Color = example_lib.Color |
| 187 | val = LeanInductiveValue("Color", "red", 0, ()) |
| 188 | assert Color.red == val |
| 189 | assert val == Color.red |
nothing calls this directly
no test coverage detected