Files
RestKit/Tests/Models/RKSearchable.m
Blake Watters 4142ffdb42 Reorganization and cleanups of Unit Tests
* Reorganized tests to accommodate split into Logic & Application.
* Eliminated 'Spec' naming in favor of 'Test' as the suite is entirely based on SenTest.
* Pulled majority of testing support classes up into the library and documented them.
* Introduced RKApplicationTests app for running the RKTableController UI tests
2012-02-10 17:32:23 -05:00

22 lines
334 B
Objective-C

//
// RKSearchable.m
// RestKit
//
// Created by Blake Watters on 7/26/11.
// Copyright (c) 2011 Two Toasters. All rights reserved.
//
#import "RKSearchable.h"
@implementation RKSearchable
@dynamic title;
@dynamic body;
+ (NSArray*)searchableAttributes {
return [NSArray arrayWithObjects:@"title", @"body", nil];
}
@end