GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Venus::Role::Testable(3) User Contributed Perl Documentation Venus::Role::Testable(3)

Venus::Role::Testable - Testable Role

Testable Role for Perl 5

  package Example;
  use Venus::Class;
  with 'Venus::Role::Testable';
  attr 'value';
  sub execute {
    return pop;
  }
  package main;
  my $example = Example->new;
  # $example->is_true(sub{0});

This package modifies the consuming package and provides methods for dispatching method calls and returning truthy returns as true and falsy returns as false boolean values.

This package provides the following methods:

  is_false(string | coderef $method, any @args) (boolean)

The is_false method dispatches the method call or executes the callback and returns truthy returns as "false" and falsy returns as "true" "boolean" values.

Since 0.08

is_false example 1
  package main;
  my $example = Example->new;
  my $true = $example->is_false(execute => 0);
  # 1
    
is_false example 2
  package main;
  my $example = Example->new;
  my $true = $example->is_false(sub{0});
  # 1
    
is_false example 3
  package main;
  my $example = Example->new;
  my $false = $example->is_false(execute => 1);
  # 0
    

  is_true(string | coderef $method, any @args) (boolean)

The is_true method dispatches the method call or executes the callback and returns truthy returns as "true" and falsy returns as "false" "boolean" values.

Since 0.08

is_true example 1
  package main;
  my $example = Example->new;
  my $true = $example->is_true(execute => 1);
  # 1
    
is_true example 2
  package main;
  my $example = Example->new;
  my $true = $example->is_true(sub{1});
  # 1
    
is_true example 3
  package main;
  my $example = Example->new;
  my $false = $example->is_true(execute => 0);
  # 0
    

Awncorp, "awncorp@cpan.org"

Copyright (C) 2022, Awncorp, "awncorp@cpan.org".

This program is free software, you can redistribute it and/or modify it under the terms of the Apache license version 2.0.

2023-11-27 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.