scinote-web/spec/controllers/client_api/configurations_controller_spec.rb

11 lines
253 B
Ruby
Raw Normal View History

2017-11-02 20:36:21 +08:00
require 'rails_helper'
2018-01-31 19:05:45 +08:00
describe ClientApi::ConfigurationsController, type: :controller, broken: true do
2017-11-02 20:36:21 +08:00
login_user
describe '#about_scinote' do
let(:subject) { get :about_scinote, format: :json }
it { is_expected.to be_success }
end
end