13 lines
273 B
Ruby
Raw Normal View History

2017-02-14 13:54:25 +11:00
require 'rails_helper'
2017-02-06 12:30:56 +11:00
2017-02-15 13:03:58 +11:00
module DiscoursePayments
2017-02-15 13:30:28 +11:00
RSpec.describe PaymentsController, type: :controller do
2017-02-15 13:03:58 +11:00
routes { DiscoursePayments::Engine.routes }
#
2017-02-15 11:40:00 +11:00
it 'responds with ok' do
post :create
expect(response).to have_http_status(200)
2017-02-06 12:30:56 +11:00
end
end
end