Created
February 16, 2016 22:26
-
-
Save MadcapJake/c74615bdad979fe4dd3a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
our $throw-on-mismatches; | |
has Bool $!throw-on-mismatches; | |
multi method throw-on-mismatches(Test::Lab::Experiment:U : Bool $flag?) { | |
with $flag { | |
Test::Lab::Experiment::<$throw-on-mismatches> = $flag | |
} else { | |
Test::Lab::Experiment::<$throw-on-mismatches> // False | |
} | |
} | |
multi method throw-on-mismatches(Test::Lab::Experiment:D : Bool $flag?) { | |
with $flag { | |
$!throw-on-mismatches = $flag | |
} else { | |
$!throw-on-mismatches // Test::Lab::Experiment.throw-on-mismatches | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment