payment_setting

This commit is contained in:
Moe Su
2017-06-08 17:57:29 +06:30
parent b57e24c076
commit 74b0550c30
46 changed files with 960 additions and 22 deletions

View File

@@ -0,0 +1,10 @@
require 'rails_helper'
RSpec.describe "MembershipActions", type: :request do
describe "GET /membership_actions" do
it "works! (now write some real specs)" do
get membership_actions_path
expect(response).to have_http_status(200)
end
end
end

View File

@@ -0,0 +1,10 @@
require 'rails_helper'
RSpec.describe "Settings::MembershipActions", type: :request do
describe "GET /settings_membership_actions" do
it "works! (now write some real specs)" do
get settings_membership_actions_path
expect(response).to have_http_status(200)
end
end
end