adds controller spec

This commit is contained in:
zmagod 2017-11-02 13:36:21 +01:00
parent 2118b31762
commit 605674bf6b

View file

@ -0,0 +1,10 @@
require 'rails_helper'
describe ClientApi::ConfigurationsController, type: :controller do
login_user
describe '#about_scinote' do
let(:subject) { get :about_scinote, format: :json }
it { is_expected.to be_success }
end
end