mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-09 04:54:54 +00:00
14 lines
308 B
Ruby
14 lines
308 B
Ruby
require 'rails_helper'
|
|
|
|
module DiscourseDonations
|
|
RSpec.describe ChargesController, type: :controller do
|
|
routes { DiscourseDonations::Engine.routes }
|
|
#
|
|
it 'responds with ok' do
|
|
skip 'need to get fixtures'
|
|
post :create
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
end
|