Skip to content

Commit

Permalink
Merge pull request #325 from tjarratt/fix-templates-for-xcode-6.3
Browse files Browse the repository at this point in the history
Update templates to work with Xcode 6.3
  • Loading branch information
akitchen committed May 5, 2015
2 parents 0235f58 + c18e694 commit 4566f29
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,29 @@
<key>Options</key>
<array>
<dict>
<key>Description</key>
<string>The name of the class to spec</string>
<key>Identifier</key>
<string>productName</string>
<key>Name</key>
<string>Class to Spec</string>
<key>NotPersisted</key>
<true/>
<key>Required</key>
<true/>
<key>Type</key>
<string>text</string>
</dict>
<key>Default</key>
<string/>
<key>Description</key>
<string>The name of the class to spec</string>
<key>Identifier</key>
<string>cedarClass</string>
<key>Name</key>
<string>Class to Spec</string>
<key>Required</key>
<true/>
<key>NotPersisted</key>
<true/>
<key>Type</key>
<string>text</string>
</dict>
<dict>
<key>Default</key>
<string>___VARIABLE_cedarClass:identifier___</string>
<key>Identifier</key>
<string>productName</string>
<key>Type</key>
<string>static</string>
</dict>
</array>
<key>Platforms</key>
<array>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#import <Cedar/Cedar.h>
#import "___FILEBASENAME___.h"
#import "___VARIABLE_cedarClass:identifier___.h"

using namespace Cedar::Matchers;
using namespace Cedar::Doubles;

SPEC_BEGIN(___FILEBASENAMEASIDENTIFIER___Spec)
SPEC_BEGIN(___VARIABLE_cedarClass:identifier___Spec)

describe(@"___FILEBASENAMEASIDENTIFIER___", ^{
__block ___FILEBASENAMEASIDENTIFIER___ *<#object under test#>;
describe(@"___VARIABLE_cedarClass:identifier___", ^{
__block ___VARIABLE_cedarClass:identifier___ *<#object under test#>;

beforeEach(^{

Expand Down

0 comments on commit 4566f29

Please sign in to comment.