File cleanup
This commit is contained in:
parent
f06a1a4161
commit
25c6eaf7a8
@ -155,12 +155,12 @@ gulp.task('api-test-db', () => {
|
||||
});
|
||||
|
||||
gulp.task('test-api', ['api-test-db'], () => {
|
||||
return gulp.src('phpunit.xml')
|
||||
return gulp.src('test/api/phpunit.xml')
|
||||
.pipe(phpunit('./src/api/vendor/phpunit/phpunit/phpunit'));
|
||||
});
|
||||
|
||||
gulp.task('test-api-single', ['api-test-db'], () => {
|
||||
return gulp.src('phpunit.xml')
|
||||
return gulp.src('test/api/phpunit.xml')
|
||||
.pipe(phpunit('./src/api/vendor/phpunit/phpunit/phpunit',
|
||||
{ group: 'single' }));
|
||||
});
|
||||
|
123
reddit.svg
123
reddit.svg
@ -1,123 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="102"
|
||||
height="20"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="reddit.svg">
|
||||
<metadata
|
||||
id="metadata34">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs32" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1858"
|
||||
inkscape:window-height="1058"
|
||||
id="namedview30"
|
||||
showgrid="false"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="52.705645"
|
||||
inkscape:cy="32.236385"
|
||||
inkscape:window-x="1916"
|
||||
inkscape:window-y="-4"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<linearGradient
|
||||
id="b"
|
||||
x2="0"
|
||||
y2="42.895222"
|
||||
gradientTransform="scale(2.1447611,0.4662524)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
stop-color="#bbb"
|
||||
stop-opacity=".1"
|
||||
id="stop5" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-opacity=".1"
|
||||
id="stop7" />
|
||||
</linearGradient>
|
||||
<mask
|
||||
id="a">
|
||||
<rect
|
||||
width="92"
|
||||
height="20"
|
||||
rx="3"
|
||||
id="rect10"
|
||||
x="0"
|
||||
y="0"
|
||||
style="fill:#ffffff" />
|
||||
</mask>
|
||||
<g
|
||||
mask="url(#a)"
|
||||
id="g12"
|
||||
transform="matrix(1.1083434,0,0,1,0.01788993,0)">
|
||||
<path
|
||||
d="m 0,0 42.3098,0 0,20 L 0,20 Z"
|
||||
id="path14"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#555555" />
|
||||
<path
|
||||
d="M 41.661166,0 92,0 92,20 41.661166,20 Z"
|
||||
id="path16"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#46bc99" />
|
||||
<path
|
||||
d="M 0,0 92,0 92,20 0,20 Z"
|
||||
id="path18"
|
||||
style="fill:url(#b)"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
font-size="11"
|
||||
id="g20"
|
||||
style="font-size:11px;font-family:'DejaVu Sans', Verdana, Geneva, sans-serif;text-anchor:middle;fill:#ffffff"
|
||||
transform="translate(10,0)">
|
||||
<text
|
||||
x="13"
|
||||
y="15"
|
||||
id="text22"
|
||||
style="fill:#010101;fill-opacity:0.3">discuss</text>
|
||||
<text
|
||||
x="13"
|
||||
y="14"
|
||||
id="text24">discuss</text>
|
||||
<text
|
||||
x="64"
|
||||
y="15"
|
||||
id="text26"
|
||||
style="fill:#010101;fill-opacity:0.3">on reddit</text>
|
||||
<text
|
||||
x="64"
|
||||
y="14"
|
||||
id="text28">on reddit</text>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.0 KiB |
@ -1,13 +1,13 @@
|
||||
<phpunit>
|
||||
<testsuites>
|
||||
<testsuite>
|
||||
<directory>test/api/</directory>
|
||||
<directory>./</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<filter>
|
||||
<whitelist>
|
||||
<directory>src/api/controllers</directory>
|
||||
<directory>src/api/models</directory>
|
||||
<directory>../../src/api/controllers</directory>
|
||||
<directory>../../src/api/models</directory>
|
||||
</whitelist>
|
||||
</filter>
|
||||
<logging>
|
Reference in New Issue
Block a user