Files
sx-fc/spec/controllers/origami/paymal_controller_spec.rb
2018-03-16 17:50:45 +06:30

13 lines
237 B
Ruby

require 'rails_helper'
RSpec.describe Origami::PaymalController, type: :controller do
describe "GET #index" do
it "returns http success" do
get :index
expect(response).to have_http_status(:success)
end
end
end