From 5ca68b01b6705b776d0b8e33631a58c6361324c0 Mon Sep 17 00:00:00 2001 From: Rick Barrette Date: Fri, 30 Jan 2026 20:46:04 -0500 Subject: [PATCH] removed unsued tests --- test/functional/estimate_controller_test.rb | 8 -------- test/functional/invoice_controller_test.rb | 8 -------- test/functional/qbo_controller_test.rb | 18 ------------------ test/integration/.gitkeep | 0 test/test_helper.rb | 2 -- test/unit/customer_token_test.rb | 9 --------- test/unit/qbo_customers_test.rb | 19 ------------------- test/unit/qbo_employee_test.rb | 9 --------- test/unit/qbo_test.rb | 19 ------------------- 9 files changed, 92 deletions(-) delete mode 100644 test/functional/estimate_controller_test.rb delete mode 100644 test/functional/invoice_controller_test.rb delete mode 100644 test/functional/qbo_controller_test.rb delete mode 100644 test/integration/.gitkeep delete mode 100644 test/test_helper.rb delete mode 100644 test/unit/customer_token_test.rb delete mode 100644 test/unit/qbo_customers_test.rb delete mode 100644 test/unit/qbo_employee_test.rb delete mode 100644 test/unit/qbo_test.rb diff --git a/test/functional/estimate_controller_test.rb b/test/functional/estimate_controller_test.rb deleted file mode 100644 index 988b75c..0000000 --- a/test/functional/estimate_controller_test.rb +++ /dev/null @@ -1,8 +0,0 @@ -require File.expand_path('../../test_helper', __FILE__) - -class EstimateControllerTest < ActionController::TestCase - # Replace this with your real tests. - def test_truth - assert true - end -end diff --git a/test/functional/invoice_controller_test.rb b/test/functional/invoice_controller_test.rb deleted file mode 100644 index 02a9dc0..0000000 --- a/test/functional/invoice_controller_test.rb +++ /dev/null @@ -1,8 +0,0 @@ -require File.expand_path('../../test_helper', __FILE__) - -class InvoiceControllerTest < ActionController::TestCase - # Replace this with your real tests. - def test_truth - assert true - end -end diff --git a/test/functional/qbo_controller_test.rb b/test/functional/qbo_controller_test.rb deleted file mode 100644 index 26e6ad9..0000000 --- a/test/functional/qbo_controller_test.rb +++ /dev/null @@ -1,18 +0,0 @@ -#The MIT License (MIT) -# -#Copyright (c) 2016 - 2026 rick barrette -# -#Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -# -#The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -# -#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -require File.expand_path('../../test_helper', __FILE__) - -class QboControllerTest < ActionController::TestCase - # Replace this with your real tests. - def test_truth - assert true - end -end diff --git a/test/integration/.gitkeep b/test/integration/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/test/test_helper.rb b/test/test_helper.rb deleted file mode 100644 index 54685d3..0000000 --- a/test/test_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -# Load the Redmine helper -require File.expand_path(File.dirname(__FILE__) + '/../../../test/test_helper') diff --git a/test/unit/customer_token_test.rb b/test/unit/customer_token_test.rb deleted file mode 100644 index cf17fc0..0000000 --- a/test/unit/customer_token_test.rb +++ /dev/null @@ -1,9 +0,0 @@ -require File.expand_path('../../test_helper', __FILE__) - -class CustomerTokenTest < ActiveSupport::TestCase - - # Replace this with your real tests. - def test_truth - assert true - end -end diff --git a/test/unit/qbo_customers_test.rb b/test/unit/qbo_customers_test.rb deleted file mode 100644 index a2d8a46..0000000 --- a/test/unit/qbo_customers_test.rb +++ /dev/null @@ -1,19 +0,0 @@ -#The MIT License (MIT) -# -#Copyright (c) 2016 - 2026 rick barrette -# -#Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -# -#The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -# -#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -require File.expand_path('../../test_helper', __FILE__) - -class QboCustomersTest < ActiveSupport::TestCase - - # Replace this with your real tests. - def test_truth - assert true - end -end diff --git a/test/unit/qbo_employee_test.rb b/test/unit/qbo_employee_test.rb deleted file mode 100644 index 3339fbb..0000000 --- a/test/unit/qbo_employee_test.rb +++ /dev/null @@ -1,9 +0,0 @@ -require File.expand_path('../../test_helper', __FILE__) - -class EmployeeTest < ActiveSupport::TestCase - - # Replace this with your real tests. - def test_truth - assert true - end -end diff --git a/test/unit/qbo_test.rb b/test/unit/qbo_test.rb deleted file mode 100644 index 15842a3..0000000 --- a/test/unit/qbo_test.rb +++ /dev/null @@ -1,19 +0,0 @@ -#The MIT License (MIT) -# -#Copyright (c) 2016 - 2026 rick barrette -# -#Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -# -#The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -# -#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -require File.expand_path('../../test_helper', __FILE__) - -class QboTest < ActiveSupport::TestCase - - # Replace this with your real tests. - def test_truth - assert true - end -end