mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
717 B
18 lines
717 B
2 years ago
|
import {singleAnchorRegex, rangeAnchorRegex} from './repo-code.js';
|
||
|
|
||
|
test('singleAnchorRegex', () => {
|
||
|
expect(singleAnchorRegex.test('#L0')).toEqual(false);
|
||
|
expect(singleAnchorRegex.test('#L1')).toEqual(true);
|
||
|
expect(singleAnchorRegex.test('#L01')).toEqual(false);
|
||
|
expect(singleAnchorRegex.test('#n0')).toEqual(false);
|
||
|
expect(singleAnchorRegex.test('#n1')).toEqual(true);
|
||
|
expect(singleAnchorRegex.test('#n01')).toEqual(false);
|
||
|
});
|
||
|
|
||
|
test('rangeAnchorRegex', () => {
|
||
|
expect(rangeAnchorRegex.test('#L0-L10')).toEqual(false);
|
||
|
expect(rangeAnchorRegex.test('#L1-L10')).toEqual(true);
|
||
|
expect(rangeAnchorRegex.test('#L01-L10')).toEqual(false);
|
||
|
expect(rangeAnchorRegex.test('#L1-L01')).toEqual(false);
|
||
|
});
|