Initial snippets for phpspec
This commit is contained in:
parent
5812cba03b
commit
e7af7326ea
38
UltiSnips/php-phpspec.snippets
Normal file
38
UltiSnips/php-phpspec.snippets
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
# Snippets for phpspec
|
||||||
|
|
||||||
|
priority -50
|
||||||
|
|
||||||
|
snippet spec "phpspec class" b
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace `!p
|
||||||
|
relpath = os.path.relpath(path)
|
||||||
|
m = re.search(r'[A-Z].+(?=/)', relpath)
|
||||||
|
if m:
|
||||||
|
snip.rv = m.group().replace('/', '\\')
|
||||||
|
`;
|
||||||
|
|
||||||
|
use PhpSpec\ObjectBehavior;
|
||||||
|
use Prophecy\Argument;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author `!v g:snips_author`
|
||||||
|
*/
|
||||||
|
class `!p
|
||||||
|
snip.rv = re.match(r'.*(?=\.)', fn).group()
|
||||||
|
` extends ObjectBehavior
|
||||||
|
{
|
||||||
|
public function it${1:_does_something}()
|
||||||
|
{
|
||||||
|
$0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
endsnippet
|
||||||
|
|
||||||
|
snippet it "phpspec function it..." b
|
||||||
|
public function it${1:_does_something}()
|
||||||
|
{
|
||||||
|
$0
|
||||||
|
}
|
||||||
|
endsnippet
|
||||||
|
|
Loading…
Reference in New Issue
Block a user