Skip to content

Instantly share code, notes, and snippets.

@skysan87
Last active July 22, 2019 01:22
Show Gist options
  • Save skysan87/64a671c2d694c003142defc568f1a323 to your computer and use it in GitHub Desktop.
Save skysan87/64a671c2d694c003142defc568f1a323 to your computer and use it in GitHub Desktop.
VisualStudioCode Ruby Snippets for RSpec
{
"it syntax": {
"prefix": "it",
"body": [
"it '$1' do",
"\t$0",
"end"
]
},
"describe syntax": {
"prefix": "describe",
"body": [
"describe '$1' do",
"\t$0",
"end"
]
},
"context syntax": {
"prefix": "context",
"body": [
"context '$1' do",
"\t$0",
"end"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment