Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 211122f

Browse files
committed
chore(ngMock): add they helper for testing multiple specs
1 parent 9f7c5ce commit 211122f

File tree

2 files changed

+32
-13
lines changed

2 files changed

+32
-13
lines changed

test/helpers/privateMocks.js

+32
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
'use strict';
22

3+
function they(msg, vals, spec, specialState) {
4+
var keyIsValue = isArray(vals);
5+
forEach(vals, function(val, key) {
6+
if (keyIsValue) {
7+
key = val;
8+
}
9+
var m = msg.replace('$prop', key);
10+
var method;
11+
switch(specialState) {
12+
case 'focus':
13+
method = iit;
14+
break;
15+
case 'skip':
16+
method = xit;
17+
break;
18+
default:
19+
method = it;
20+
}
21+
method(m, function() {
22+
spec(val);
23+
});
24+
});
25+
}
26+
27+
function tthey(msg, vals, spec) {
28+
they(msg, vals, spec, 'focus');
29+
}
30+
31+
function xthey(msg, vals, spec) {
32+
they(msg, vals, spec, 'skip');
33+
}
34+
335
function createMockStyleSheet(doc, wind) {
436
doc = doc ? doc[0] : document;
537
wind = wind || window;

test/ngMessages/messagesSpec.js

-13
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,6 @@ describe('ngMessages', function() {
44
beforeEach(inject.strictDi());
55
beforeEach(module('ngMessages'));
66

7-
function they(msg, vals, spec, focus) {
8-
forEach(vals, function(val, key) {
9-
var m = msg.replace('$prop', key);
10-
(focus ? iit : it)(m, function() {
11-
spec(val);
12-
});
13-
});
14-
}
15-
16-
function tthey(msg, vals, spec) {
17-
they(msg, vals, spec, true);
18-
}
19-
207
function s(str) {
218
return str.replace(/\s+/g,'');
229
}

0 commit comments

Comments
 (0)