Menu Item Groups

This commit is contained in:
yarzar_code
2020-01-30 11:57:28 +06:30
parent 8aa750712e
commit 7a09ed0108
17 changed files with 337 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
require 'rails_helper'
RSpec.describe Api::MenuItemGroupsController, type: :controller do
end

View File

@@ -0,0 +1,5 @@
require 'rails_helper'
RSpec.describe Settings::MenuItemGroupsController, type: :controller do
end

View File

@@ -0,0 +1,15 @@
require 'rails_helper'
# Specs in this file have access to a helper object that includes
# the Api::MenuItemGroupsHelper. For example:
#
# describe Api::MenuItemGroupsHelper do
# describe "string concat" do
# it "concats two strings with spaces" do
# expect(helper.concat_strings("this","that")).to eq("this that")
# end
# end
# end
RSpec.describe Api::MenuItemGroupsHelper, type: :helper do
pending "add some examples to (or delete) #{__FILE__}"
end

View File

@@ -0,0 +1,15 @@
require 'rails_helper'
# Specs in this file have access to a helper object that includes
# the Settings::MenuItemGroupsHelper. For example:
#
# describe Settings::MenuItemGroupsHelper do
# describe "string concat" do
# it "concats two strings with spaces" do
# expect(helper.concat_strings("this","that")).to eq("this that")
# end
# end
# end
RSpec.describe Settings::MenuItemGroupsHelper, type: :helper do
pending "add some examples to (or delete) #{__FILE__}"
end