Created
January 23, 2012 08:29
-
-
Save chakrit/1661746 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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