Last active
September 15, 2015 13:45
-
-
Save saiday/1fc83c0bcf01bf82b6d3 to your computer and use it in GitHub Desktop.
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
| // Your pull request, passed | |
| method: | |
| { | |
| return 3 | |
| } | |
| test case: | |
| { | |
| method().is(3) | |
| } | |
| // merge one pull request | |
| method: | |
| { | |
| return 1 | |
| } | |
| // merge your pull request, failed | |
| method: | |
| { | |
| return 1 | |
| } | |
| test case: | |
| { | |
| method().is(3) // fail | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment