Skip to content

Instantly share code, notes, and snippets.

@saiday
Last active September 15, 2015 13:45
Show Gist options
  • Select an option

  • Save saiday/1fc83c0bcf01bf82b6d3 to your computer and use it in GitHub Desktop.

Select an option

Save saiday/1fc83c0bcf01bf82b6d3 to your computer and use it in GitHub Desktop.
// 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