data_controller_spec.rb 229 B

123456789101112
  1. require 'spec_helper'
  2. describe TaiwanCity::DataController do
  3. describe "GET 'show'" do
  4. it "returns http success" do
  5. get 'show', id: '000', use_route: 'taiwan_city'
  6. response.should be_success
  7. end
  8. end
  9. end