File: NonStrictMocker.pm

package info (click to toggle)
libtest-mockmodule-perl 0.180.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 192 kB
  • sloc: perl: 245; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 208 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
package ScopedStrict::NonStrictMocker;

use strict;
use warnings;

use Test::MockModule;

Test::MockModule->new('ScopedStrict::Mockee2')->mock(
    also_gonna_mock_this => sub { "another mocked sub" }
);

1;