Branislav Zahradník

Results 22 issues of Branislav Zahradník

Instead of using `origin` try to fetch it from git first using for example result of ``` git branch -rl "*/HEAD" ``` or (expecting `master` to be default branch) ```...

It will be nice to have tooling to work with coverage data inside tests. Expected usage: - to test coverage of given function/method ``` test_coverage ('Foo::bar', code => min (0.9),...

needs investigation

**Description** When using forward coderef to imported builtin current blead (sha: af9733f1e2) doesn't assign ref properly, though it does it when builtin is not used or when ref is evaluated...

Before v5.32 Perl accepted hex / binary zeroes in form `0x_` / `0b_`. v5.32 doesn't anymore. As far as change is not listed as incompatible change it means its a...

Example: ``` perl use Test::Exception; use Test::Spec; sub as (&) { shift; } describe "what" => as { context "when" => as { my $obj; it 'should pass' => as...

Example: ``` perl use threads::shared; use Test::Spec; ``` Output: ``` Prototype mismatch: sub main::share (\[$@%]) vs (\%) at /home/brano/threads-share.pl line 3. ```

### Motivation Let `perlbrew` to manage its own `dzil` library caching dependencies collected by participating to multiple projects. Having dzil library will also simplify travis usage, simple `perlbrew dzil build`...

Unlike other primitive `BOOL` should accept `undef` as well. There are tons of existing code returning `undef` as false. IMHO it's not good idea forcing users to change their existing...

# Motivation / Goal Nowadays common usage of Perl programs is some kind of backend. There it usually needs 3 types of `checks` (better word here will be `contract`) -...

Example: ``` my @list : (Array[ max_length (7), Int ]; if ($list[8]) { # should this fail? } ```