]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/commitdiff
Replace LaTeX::TikZ::Set::Path::Elements by LaTeX::TikZ::Set::Op
authorVincent Pit <vince@profvince.com>
Sun, 1 Aug 2010 22:35:16 +0000 (00:35 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 1 Aug 2010 22:35:16 +0000 (00:35 +0200)
I guess the failures that led me to introduce this were caused by some
loading order issue.

lib/LaTeX/TikZ/Set/Path.pm
t/10-set.t

index 86dfe446cf4a7504cc8357006b0d0a8c1d2e7afd..d9a9799bd9efde2c2dc7d283c9dc8566b2ed92f9 100644 (file)
@@ -18,9 +18,9 @@ our $VERSION = '0.01';
 use LaTeX::TikZ::Interface;
 use LaTeX::TikZ::Functor;
 
+use LaTeX::TikZ::Tools;
+
 use Any::Moose;
-use Any::Moose 'Util::TypeConstraints'
-               => [ qw/subtype as where find_type_constraint/ ];
 
 =head1 RELATIONSHIPS
 
@@ -41,13 +41,9 @@ The L<LaTeX::TikZ::Set::Op> objects that from the path.
 
 =cut
 
-subtype 'LaTeX::TikZ::Set::Path::Elements'
-     => as 'Object'
-     => where { $_->does('LaTeX::TikZ::Set::Op') };
-
 has '_ops' => (
  is       => 'ro',
- isa      => 'Maybe[ArrayRef[LaTeX::TikZ::Set::Path::Elements]]',
+ isa      => 'Maybe[ArrayRef[LaTeX::TikZ::Set::Op]]',
  init_arg => 'ops',
  default  => sub { [ ] },
 );
@@ -60,12 +56,12 @@ sub ops { @{$_[0]->_ops} }
 
 =cut
 
-my $ltspe_tc = find_type_constraint('LaTeX::TikZ::Set::Path::Elements');
+my $ltso_tc = LaTeX::TikZ::Tools::type_constraint('LaTeX::TikZ::Set::Op');
 
 sub add {
  my $set = shift;
 
- $ltspe_tc->assert_valid($_) for @_;
+ $ltso_tc->assert_valid($_) for @_;
 
  push @{$set->_ops}, @_;
 
index 190846c6972956359b799d9f0db65f28fcf7b206..4ddac3c9d670ff68b9dc81a3dde2daaea4411531 100644 (file)
@@ -106,12 +106,10 @@ sub failed_valid {
  qr/Validation failed for '\Q$tc\E'/;
 }
 
-my $err_path = qr/does not pass the type constraint because: Validation failed for 'Maybe\[ArrayRef\[LaTeX::TikZ::Set::Path::Elements\]\]/;
-
 eval {
  Tikz->path($foo, $seq2);
 };
-like $@, failed_valid('Maybe[ArrayRef[LaTeX::TikZ::Set::Path::Elements]]'),
+like $@, failed_valid('Maybe[ArrayRef[LaTeX::TikZ::Set::Op]]'),
          'creating a path that contains a sequence croaks';
 
 my $path = eval {
@@ -136,5 +134,5 @@ RES
 eval {
  $path->add($seq2);
 };
-like $@, failed_valid('LaTeX::TikZ::Set::Path::Elements'),
+like $@, failed_valid('LaTeX::TikZ::Set::Op'),
          'adding a sequence to a path croaks';