Help for this page

Select Code to Download


  1. or download this
        # lib/Wildlife/Behavior/Buyer.zydeco.pm
        role Buyer {
    ...
          }
        }
    
  2. or download this
        # lib/Place/Behavior/Exhibit.zydeco.pm
        role Exhibit {
    ...
        }
    
  3. or download this
        # lib/Art.pm
        package Art {
    ...
        }
    
  4. or download this
        # t/gallery.t
        use v5.16;
    ...
        can_ok $gallery, 'sale';
    
  5. or download this
    
        smonff@padi:~/projects/Art-World$ prove -lv t/15_gallery.t
    ...
        Result: FAIL
    
  6. or download this
        croak "Can't apply ${name} to ${to} - missing ".join(', ', @requir
    +es_fail);
    
  7. or download this
        class Gallery with Exhibit, Buyer {
    
    ...
          ...
      }
    
  8. or download this
      smonff@padi:~/projects/Art-World$ prove -lv t/15_gallery.t
      t/15_gallery.t ..
    ...
      Files=1, Tests=7,  2 wallclock secs ( 0.03 usr  0.00 sys +  2.30 cus
    +r  0.16 csys =  2.49 CPU)
      Result: PASS