summaryrefslogtreecommitdiff
path: root/test/functional/tenants_controller_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/tenants_controller_test.rb')
-rw-r--r--test/functional/tenants_controller_test.rb51
1 files changed, 51 insertions, 0 deletions
diff --git a/test/functional/tenants_controller_test.rb b/test/functional/tenants_controller_test.rb
new file mode 100644
index 0000000..b4e2df4
--- /dev/null
+++ b/test/functional/tenants_controller_test.rb
@@ -0,0 +1,51 @@
+require 'test_helper'
+
+class TenantsControllerTest < ActionController::TestCase
+ # TODO Create tests which test that a login user has specific rights.
+
+ # setup do
+ # @tenant = Factory.create(:tenant)
+ # end
+ #
+ # test "should get index" do
+ # get :index
+ # assert_response :success
+ # assert_not_nil assigns(:tenants)
+ # end
+ #
+ # test "should get new" do
+ # get :new
+ # assert_response :success
+ # end
+ #
+ # test "should create tenant" do
+ # assert_difference('Tenant.count') do
+ # post :create, tenant: Factory.build(:tenant).attributes
+ # end
+ #
+ # assert_redirected_to tenant_path(assigns(:tenant))
+ # end
+ #
+ # test "should show tenant" do
+ # get :show, id: @tenant.to_param
+ # assert_response :success
+ # end
+ #
+ # test "should get edit" do
+ # get :edit, id: @tenant.to_param
+ # assert_response :success
+ # end
+ #
+ # test "should update tenant" do
+ # put :update, id: @tenant.to_param, tenant: @tenant.attributes
+ # assert_redirected_to tenant_path(assigns(:tenant))
+ # end
+ #
+ # test "should destroy tenant" do
+ # assert_difference('Tenant.count', -1) do
+ # delete :destroy, id: @tenant.to_param
+ # end
+ #
+ # assert_redirected_to tenants_path
+ # end
+end