Skip to content

Instantly share code, notes, and snippets.

@chakrit
Created January 23, 2012 08:29
Show Gist options
  • Save chakrit/1661746 to your computer and use it in GitHub Desktop.
Save chakrit/1661746 to your computer and use it in GitHub Desktop.
require 'spec_helper'
describe 'api' do
# routing
it 'should route to v1 /me correctly' do
assert_routing('/api/v1/me', { :controller => 'me', :action => 'show' });
end
# controllers
describe Api::V1::MeController do
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment