Changed double quotes to single quotes.
We'll start to change this to make valid Ruby source files according to Rubocop (https://github.com/bbatsov/rubocop). Changes here came from https://github.com/honza/vim-snippets/pull/401, thanks for warning us, @mkroman!
This commit is contained in:
parent
cbcc23571f
commit
4cdf9dbf86
@ -414,11 +414,11 @@ snippet desc
|
||||
${0}
|
||||
end
|
||||
snippet descm
|
||||
describe "${1:#method}" do
|
||||
${0:pending "Not implemented"}
|
||||
describe '${1:#method}' do
|
||||
${0:pending 'Not implemented'}
|
||||
end
|
||||
snippet cont
|
||||
context "${1:message}" do
|
||||
context '${1:message}' do
|
||||
${0}
|
||||
end
|
||||
snippet bef
|
||||
@ -450,7 +450,7 @@ snippet shared
|
||||
snippet ibl
|
||||
it_behaves_like ${0:"shared examples name"}
|
||||
snippet it
|
||||
it "${1:spec_name}" do
|
||||
it '${1:spec_name}' do
|
||||
${0}
|
||||
end
|
||||
snippet its
|
||||
|
Loading…
Reference in New Issue
Block a user