mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-19 23:50:11 +08:00
* 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
12 lines
171 B
Ruby
12 lines
171 B
Ruby
module RestKit
|
|
module Network
|
|
class Timeout < Sinatra::Base
|
|
|
|
get '/disk/cached' do
|
|
"This Should Get Cached For 5 Seconds"
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|