about summary refs log tree commit diff
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/controllers/domain_policy_controller_spec.rb12
-rw-r--r--spec/helpers/domain_policy_helper_spec.rb15
-rw-r--r--spec/views/domain_policy/show.html.haml_spec.rb5
3 files changed, 32 insertions, 0 deletions
diff --git a/spec/controllers/domain_policy_controller_spec.rb b/spec/controllers/domain_policy_controller_spec.rb
new file mode 100644
index 000000000..8214f4fac
--- /dev/null
+++ b/spec/controllers/domain_policy_controller_spec.rb
@@ -0,0 +1,12 @@
+require 'rails_helper'
+
+RSpec.describe DomainPolicyController, type: :controller do
+
+  describe "GET #show" do
+    it "returns http success" do
+      get :show
+      expect(response).to have_http_status(:success)
+    end
+  end
+
+end
diff --git a/spec/helpers/domain_policy_helper_spec.rb b/spec/helpers/domain_policy_helper_spec.rb
new file mode 100644
index 000000000..45ade9a3b
--- /dev/null
+++ b/spec/helpers/domain_policy_helper_spec.rb
@@ -0,0 +1,15 @@
+require 'rails_helper'
+
+# Specs in this file have access to a helper object that includes
+# the DomainPolicyHelper. For example:
+#
+# describe DomainPolicyHelper 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 DomainPolicyHelper, type: :helper do
+  pending "add some examples to (or delete) #{__FILE__}"
+end
diff --git a/spec/views/domain_policy/show.html.haml_spec.rb b/spec/views/domain_policy/show.html.haml_spec.rb
new file mode 100644
index 000000000..67b21486f
--- /dev/null
+++ b/spec/views/domain_policy/show.html.haml_spec.rb
@@ -0,0 +1,5 @@
+require 'rails_helper'
+
+RSpec.describe "domain_policy/show.html.haml", type: :view do
+  pending "add some examples to (or delete) #{__FILE__}"
+end