fixed conflict

This commit is contained in:
Aung Myo
2017-06-09 12:04:36 +06:30
82 changed files with 2071 additions and 337 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