demarches-normaliennes/spec/controllers/api/statistiques_spec.rb
2016-02-29 15:15:44 +01:00

12 lines
223 B
Ruby

require 'spec_helper'
describe API::StatistiquesController, type: :controller do
describe '#GET dossiers_stats' do
before do
get :dossiers_stats
end
it { expect(response.status).to eq 200 }
end
end