Created
August 30, 2020 02:09
-
-
Save codetombomb/d337795e08196773a4bb10f22d04925f to your computer and use it in GitHub Desktop.
Syntax Sugar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
expect(1<2).to be true | |
#what is really happening here is this: | |
expect(1<2).to(be(true)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment