Jared K. Smith a796f41
import test from 'ava';
Jared K. Smith a796f41
import fn from './';
Jared K. Smith 9bc0092
Jared K. Smith a796f41
test(t => {
Jared K. Smith a796f41
	t.is(
Jared K. Smith a796f41
		fn('\\ ^ $ * + ? . ( ) | { } [ ]'),
Jared K. Smith a796f41
		'\\\\ \\^ \\$ \\* \\+ \\? \\. \\( \\) \\| \\{ \\} \\[ \\]'
Jared K. Smith a796f41
	);
Jared K. Smith 9bc0092
});