Skip to content

Instantly share code, notes, and snippets.

@codetombomb
Created August 30, 2020 02:09
Show Gist options
  • Save codetombomb/d337795e08196773a4bb10f22d04925f to your computer and use it in GitHub Desktop.
Save codetombomb/d337795e08196773a4bb10f22d04925f to your computer and use it in GitHub Desktop.
Syntax Sugar
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