forked from cedarbdd/cedar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MACROS
64 lines (64 loc) · 1.87 KB
/
MACROS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
({
Identifier = pivotal.cedar.describe;
BasedOn = objc;
OnlyAtBOL = YES;
IsMenuItem = NO;
Name = "Cedar describe";
TextString = "describe(@\"<#!subject under test!#>\", ^{\n\t<#!content!#>\n});";
CompletionPrefix = "cdesc";
IncludeContexts = ("xcode.lang.objc");
},{
Identifier = pivotal.cedar.beforeEach;
BasedOn = objc;
OnlyAtBOL = YES;
IsMenuItem = NO;
Name = "Cedar beforeEach";
TextString = "beforeEach(^{\n\t<#!content!#>\n});";
CompletionPrefix = "cbef";
IncludeContexts = ("xcode.lang.objc");
},{
Identifier = pivotal.cedar.it;
BasedOn = objc;
OnlyAtBOL = YES;
IsMenuItem = NO;
Name = "Cedar it";
TextString = "it(@\"should <#!expected behavior!#>\", ^{\n\t<#!content!#>\n});";
CompletionPrefix = "cit";
IncludeContexts = ("xcode.lang.objc");
},{
Identifier = pivotal.cedar.afterEach;
BasedOn = objc;
OnlyAtBOL = YES;
IsMenuItem = NO;
Name = "Cedar afterEach";
TextString = "afterEach(^{\n\t<#!content!#>\n});";
CompletionPrefix = "caft";
IncludeContexts = ("xcode.lang.objc");
},{
Identifier = pivotal.cedar.pending;
BasedOn = objc;
OnlyAtBOL = YES;
IsMenuItem = NO;
Name = "Cedar pending example";
TextString = "it(@\"should <#!expected behavior!#>\", PENDING);";
CompletionPrefix = "cpend";
IncludeContexts = ("xcode.lang.objc");
},{
Identifier = pivotal.cedar.expandPending;
BasedOn = objc;
OnlyAtBOL = NO;
IsMenuItem = NO;
Name = "Cedar implement pending";
TextString = "^{\n\t<#!content!#>\n}";
CompletionPrefix = "PENDING";
IncludeContexts = ("xcode.lang.objc");
},{
Identifier = pivotal.cedar.sharedExampleGroup;
BasedOn = objc;
OnlyAtBOL = YES;
IsMenuItem = NO;
Name = "Cedar shared example group";
TextString = "sharedExamplesFor(@\"<#!shared description!#>\", ^(NSDictionary *context) {\n\t<#!content!#>\n});";
CompletionPrefix = "cshare";
IncludeContexts = ("xcode.lang.objc");
})