This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* File contains two classes to help maintaining temporary files (especially problem of | |
* cleaning up such files) - FileToRemove and TemporaryFile. | |
* | |
* Requires PHP >= 5.3.0 (tested with 5.3.10-1) | |
*/ | |
namespace Vendorname; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Vendor\TestBundle\Entity; | |
use Doctrine\ORM\Mapping as ORM; | |
use Doctrine\Common\Collections\ArrayCollection; | |
/** | |
* Gneral class for all entities. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": "chuck", | |
"data2": "testa", | |
"some_metadata": { | |
"foo": ["baz", "bar"] | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data2": "testa", | |
"data3": "guess who is missing?", | |
"some_metadata": { | |
"foo": ["baz", "bar"] | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": "chuck", | |
"data2": "testa", | |
"some_metadata": { | |
"foo": ["baz", "bar"] | |
}, | |
"version": "1.3" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data2": "testa", | |
"data3": "guess who is missing?", | |
"some_metadata": { | |
"foo": ["baz", "bar"] | |
}, | |
"version": "2.0" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nofoldenable | |
set title | |
let g:syntastic_python_checkers=['python', 'pylama', 'py3kwarn'] | |
au BufEnter * set cc=80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@pytest.fixture(scope=module) | |
def heavy_fixture(fixture1, fixture2): | |
# here be dragons | |
@pytest.mark.parametrize( | |
['param1', 'param2', 'param3'], | |
[ | |
(1, 0, 0), | |
(0, 1, 1), |