aboutsummaryrefslogtreecommitdiff
path: root/test/controllers/backends/terraform_libvirt_controller_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/controllers/backends/terraform_libvirt_controller_test.rb')
-rw-r--r--test/controllers/backends/terraform_libvirt_controller_test.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/controllers/backends/terraform_libvirt_controller_test.rb b/test/controllers/backends/terraform_libvirt_controller_test.rb
new file mode 100644
index 0000000..376d753
--- /dev/null
+++ b/test/controllers/backends/terraform_libvirt_controller_test.rb
@@ -0,0 +1,14 @@
+require 'test_helper'
+
+class Backends::TerraformLibvirtControllerTest < ActionDispatch::IntegrationTest
+ test "should get new" do
+ get backends_terraform_libvirt_new_url
+ assert_response :success
+ end
+
+ test "should get show" do
+ get backends_terraform_libvirt_show_url
+ assert_response :success
+ end
+
+end