File: data_sharing.t

package info (click to toggle)
libtest-spec-perl 0.54-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 312 kB
  • sloc: perl: 2,502; makefile: 2
file content (60 lines) | stat: -rwxr-xr-x 1,221 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env perl
#
# stash.t
#
# Test cases for context stash.
#
########################################################################
#
package Testcase::Spec::Stash;
use strict;
use warnings;
use Test::Spec;

describe "An example group" => sub {

  share my %stash;

  $stash{outside} = "outside";
  $stash{inside}  = "outside";  # expected to be overridden

  before all => sub {
    $stash{inside} .= 'inside';  # overrides earlier
  };
  before each => sub {
    $stash{each1} = 'each1';
  };
  before each => sub {
    $stash{each2} = 'each2';
  };

  my %expected = (
    outside => 'outside',
    inside => 'outsideinside',
    each1 => 'each1',
    each2 => 'each2',
  );

  it "should set up the stash properly" => sub {
    is_deeply({ %stash }, \%expected);
  };

  describe "within an example group" => sub {
    it "should get the same stash as its parents" => sub {
      is_deeply({ %stash }, { %expected, each3 => 'each3' });
    };
    before each => sub {
      $stash{each3} = 'each3';
    };

    share my %second;
    it "should have the same data in every shared hash" => sub {
      $second{key} = 'value';
      is_deeply({ %second }, { %stash });
    };
  };

};

runtests unless caller;