]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/commitdiff
Test mod/clip/layer folding
authorVincent Pit <vince@profvince.com>
Mon, 19 Jul 2010 09:54:55 +0000 (11:54 +0200)
committerVincent Pit <vince@profvince.com>
Mon, 19 Jul 2010 09:54:55 +0000 (11:54 +0200)
t/22-clip.t

index 800be76b528e3528da75cd1b8a96f51e1b783e10..b3a1616375907e81081cbd0cb683b240c4c4fb4f 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 2 + 2 * 9;
+use Test::More tests => 2 + 2 * 10;
 
 use LaTeX::TikZ;
 
@@ -154,3 +154,28 @@ check $seq2, 'mods folding with clips 7', <<'RES';
 \end{scope}
 RES
 
+$seq2->layer('top');
+$seq->layer('bottom');
+
+check $seq2, 'mods folding with clips and layers', <<'RES';
+\begin{pgfonlayer}{top}
+\begin{scope} [color=red]
+\clip clip2 ;
+\begin{scope}
+\clip clip1 ;
+\begin{pgfonlayer}{bottom}
+\begin{scope} [color=red]
+\clip clip2 ;
+\begin{scope}
+\clip clip1 ;
+\draw foo ;
+\draw bar ;
+\end{scope}
+\end{scope}
+\end{pgfonlayer}
+\draw baz ;
+\end{scope}
+\end{scope}
+\end{pgfonlayer}
+RES
+