forked from cedarbdd/cedar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMACROS
73 lines (73 loc) · 2.27 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
65
66
67
68
69
70
71
72
73
({
Identifier = pivotal.cedar.describe;
BasedOn = objc;
OnlyAtBOL = YES;
IsMenuItem = NO;
Name = "Cedar describe";
TextString = "describe(@\"<#!subject under test!#>\", ^{\n\t<#!content!#>\n});";
CompletionPrefix = "Describe";
IncludeContexts = ("xcode.lang.objc");
},{
Identifier = pivotal.cedar.beforeEach;
BasedOn = objc;
OnlyAtBOL = YES;
IsMenuItem = NO;
Name = "Cedar beforeEach";
TextString = "beforeEach(^{\n\t<#!content!#>\n});";
CompletionPrefix = "BeforeEach";
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 = "It";
IncludeContexts = ("xcode.lang.objc");
},{
Identifier = pivotal.cedar.itShouldBehaveLikeWithContext;
BasedOn = objc;
OnlyAtBOL = YES;
IsMenuItem = NO;
Name = "Cedar it";
TextString = "itShouldBehaveLikeWithContext(<#NSString *subject#>, <#NSString *groupName#>, MAKE_CONTEXT(<#NSDictionary *context#>));";
CompletionPrefix = "ItShouldBehaveLikeWithContext";
IncludeContexts = ("xcode.lang.objc");
},{
Identifier = pivotal.cedar.afterEach;
BasedOn = objc;
OnlyAtBOL = YES;
IsMenuItem = NO;
Name = "Cedar afterEach";
TextString = "afterEach(^{\n\t<#!content!#>\n});";
CompletionPrefix = "AfterEach";
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 = "Pending";
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)(void)) {\n\t<#!content!#>\n});";
CompletionPrefix = "sharedExampleGroup";
IncludeContexts = ("xcode.lang.objc");
})