18

#You never know the sun will rise. I recommend this code style.

a = 2
b = 2
c = a + b
assert a is 2 and b is 2
assert 2 + 2 is 4
assert a + b is c
assert c is 4

Comments
  • 4
    assertEquals(true, not false)
    assertEquals(true, true or false)
    assertEquals(false, true and false)
    etc

    I run all these tests several times a day. You gotta make sure the universe isn't falling apart.
Add Comment