Skip to content

Instantly share code, notes, and snippets.

@chaserx
Created December 13, 2012 21:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chaserx/4280349 to your computer and use it in GitHub Desktop.
Save chaserx/4280349 to your computer and use it in GitHub Desktop.
Some Sublime Snippets
<snippet>
<content><![CDATA[
test '${1:truth}' do
set = fixture_set(${2:default})
assert true
end
]]></content>
<tabTrigger>fstest</tabTrigger>
<scope>source.ruby</scope>
<description>basic test with fixture set</description>
</snippet>
<snippet>
<content><![CDATA[
test '${1:the truth}' do
${2:assert true}
end
]]></content>
<tabTrigger>ttest</tabTrigger>
<scope>source.ruby</scope>
<description>test 'truth' do</description>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment