]> source.dussan.org Git - svg.js.git/commitdiff
move fixtures to the fixtures folder
authordotnetCarpenter <jon.ronnenberg@gmail.com>
Wed, 26 Apr 2017 23:00:51 +0000 (01:00 +0200)
committerdotnetCarpenter <jon.ronnenberg@gmail.com>
Wed, 26 Apr 2017 23:01:46 +0000 (01:01 +0200)
.config/karma.conf.js
.config/pretest.js
spec/fixture.css [deleted file]
spec/fixture.svg [deleted file]
spec/fixtures/fixture.css [new file with mode: 0644]
spec/fixtures/fixture.svg [new file with mode: 0644]

index f2bdfeb0ff5543980178c28f642261628269ddd1..42ceb393c9232e82221ab11fb4a6825bcecb31ba 100644 (file)
@@ -17,12 +17,12 @@ module.exports = function(config) {
     files: [
       '.config/pretest.js',
       {
-        pattern: 'spec/fixture.css',
+        pattern: 'spec/fixtures/fixture.css',
         included: false,
         served: true
       },
       {
-        pattern: 'spec/fixture.svg',
+        pattern: 'spec/fixtures/fixture.svg',
         included: false,
         served: true
       },
index 1ccaf89458634b4a15f86d7009ef6735c77ce211..834e8d834f09d8c5668ac8c95fde45988ced5b6c 100644 (file)
@@ -12,9 +12,9 @@ function get(uri) {
 function main() {
        var style = document.createElement("style")
        document.head.appendChild(style)
-       style.sheet.insertRule( get('/base/spec/fixture.css'), 0 )
+       style.sheet.insertRule( get('/fixtures/fixture.css'), 0 )
 
-       document.body.innerHTML = get('/base/spec/fixture.svg')
+       document.body.innerHTML = get('/fixtures/fixture.svg')
 }
 
 main()
diff --git a/spec/fixture.css b/spec/fixture.css
deleted file mode 100644 (file)
index e72e421..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-#drawing {
-       width: 500px;
-       height: 500px;
-       position: fixed;
-       z-index: -1;
-}
\ No newline at end of file
diff --git a/spec/fixture.svg b/spec/fixture.svg
deleted file mode 100644 (file)
index f910dc1..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<svg height="0" width="0" id="inlineSVG">
-    <defs>
-      <linearGradient>
-        <stop offset="5%"  stop-color="green"/>
-        <stop offset="95%" stop-color="gold"/>
-      </linearGradient>
-      <radialGradient>
-        <stop offset="10%" stop-color="gold"/>
-        <stop offset="95%" stop-color="green"/>
-      </radialGradient>
-    </defs>
-       <desc>Some description</desc>
-       <path id="lineAB" d="M 100 350 l 150 -300" stroke="red" stroke-width="3" fill="none" />
-       <path id="lineBC" d="M 250 50 l 150 300" stroke="red" stroke-width="3" fill="none" />
-       <path d="M 175 200 l 150 0" stroke="green" stroke-width="3" fill="none" />
-       <path d="M 100 350 q 150 -300 300 0" stroke="blue" stroke-width="5" fill="none" />
-       <g stroke="black" stroke-width="3" fill="black" id="pointGroup">
-               <circle id="pointA" cx="100" cy="350" r="3" />
-               <circle id="pointB" cx="250" cy="50" r="3" />
-               <circle id="pointC" cx="400" cy="350" r="3" />
-       </g>
-       <g font-size="30" font="sans-serif" fill="black" stroke="none" text-anchor="middle" id="labelGroup">
-               <text x="100" y="350" dx="-30">A</text>
-               <text x="250" y="50" dy="-10">B</text>
-               <text x="400" y="350" dx="30">C</text>
-       </g>
-       <polygon points="200,10 250,190 160,210" />
-       <polyline points="20,20 40,25 60,40 80,120 120,140 200,180" />
-</svg>
\ No newline at end of file
diff --git a/spec/fixtures/fixture.css b/spec/fixtures/fixture.css
new file mode 100644 (file)
index 0000000..e72e421
--- /dev/null
@@ -0,0 +1,6 @@
+#drawing {
+       width: 500px;
+       height: 500px;
+       position: fixed;
+       z-index: -1;
+}
\ No newline at end of file
diff --git a/spec/fixtures/fixture.svg b/spec/fixtures/fixture.svg
new file mode 100644 (file)
index 0000000..f910dc1
--- /dev/null
@@ -0,0 +1,29 @@
+<svg height="0" width="0" id="inlineSVG">
+    <defs>
+      <linearGradient>
+        <stop offset="5%"  stop-color="green"/>
+        <stop offset="95%" stop-color="gold"/>
+      </linearGradient>
+      <radialGradient>
+        <stop offset="10%" stop-color="gold"/>
+        <stop offset="95%" stop-color="green"/>
+      </radialGradient>
+    </defs>
+       <desc>Some description</desc>
+       <path id="lineAB" d="M 100 350 l 150 -300" stroke="red" stroke-width="3" fill="none" />
+       <path id="lineBC" d="M 250 50 l 150 300" stroke="red" stroke-width="3" fill="none" />
+       <path d="M 175 200 l 150 0" stroke="green" stroke-width="3" fill="none" />
+       <path d="M 100 350 q 150 -300 300 0" stroke="blue" stroke-width="5" fill="none" />
+       <g stroke="black" stroke-width="3" fill="black" id="pointGroup">
+               <circle id="pointA" cx="100" cy="350" r="3" />
+               <circle id="pointB" cx="250" cy="50" r="3" />
+               <circle id="pointC" cx="400" cy="350" r="3" />
+       </g>
+       <g font-size="30" font="sans-serif" fill="black" stroke="none" text-anchor="middle" id="labelGroup">
+               <text x="100" y="350" dx="-30">A</text>
+               <text x="250" y="50" dy="-10">B</text>
+               <text x="400" y="350" dx="30">C</text>
+       </g>
+       <polygon points="200,10 250,190 160,210" />
+       <polyline points="20,20 40,25 60,40 80,120 120,140 200,180" />
+</svg>
\ No newline at end of file