summaryrefslogtreecommitdiff
path: root/t/uni/bless.t
Commit message (Collapse)AuthorAgeFilesLines
* Use set_up_inc for several unit testsNicolas R2016-08-181-1/+1
| | | | | | | | | | | | | | | Use set_up_inc when require.pl is loaded move plan outside of BEGIN block when no tests are run at BEGIN time. Using set_up_inc allow to run these tests under minitest but also compile them using B::C. This also has the advantage to use a single control point for @INC setup. Note: some tests cannot use 'require test.pl', unshfit is then used for them.
* pp.c & sv.c: pp_ref UTF8 and null cleanup.Brian Fraser2011-10-061-4/+1
| | | | | | | | | This adds a new function to sv.c, sv_ref, which is a nul-and-UTF8 clean version of sv_reftype. pp_ref now uses that. sv_ref() not only returns the SV, but also takes in an SV to modify, so we can say both sv_ref(TARG, obj, TRUE); and sv = sv_ref(NULL, obj, TRUE);
* pp.c: pp_bless UTF8 cleanup.Brian Fraser2011-10-061-0/+127
Some tests in t/uni/bless.t are TODO, as ref() isn't clean yet.