demarches-normaliennes/spec/controllers/api/statistiques_spec.rb
2017-06-13 10:35:23 +02:00

11 lines
222 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