Revision 41dfabc09c19be445a0acb2b806846b7157dd49a authored by Anthony Brummett on 13 February 2012, 18:38:36 UTC, committed by Anthony Brummett on 19 October 2012, 19:52:23 UTC
In the property replacement step, it adds info about where the inserted globs
(*) are.  _replace_glob_with_values_in_pathname() takes that info, and figures
out what the possible values are using glob() which taking care not to guess at
property values for globs put in the original spec string.
1 parent ffe8815
Raw File
URT.pm
use strict;
use warnings;

package URT;

use UR;

class URT {
    is => ['UR::Namespace'],
    has_constant => [
        allow_sloppy_primitives => { value => 1 },
    ],
    doc => 'A dummy namespace used by the UR test suite.',
};

1;
#$Header
back to top