Description of the need
Currently, when a test is done it deletes all the tables and files for it's prefix. During most tests, only a few tables are modified, which means that most of the table dropping and creating is unnecessary.
Proposed solution
Change the setUp and tearDown functions from the test class to not delete the class prefix, but instead replace the tables that were changed.
GitHub Issue #:
4353
Recent comments
This relates to a problem with creating a View of Projects on a site using MySQL >= 8.0.3 https://github.com/backdrop/backdrop-issues/issues/5795 I can't be at the meeting this...
Dec 5th Weekly Dev Meeting
Additionally, "outside" means a file that is located outside a module folder. The second parameter of module_load_include() is the name of a module, so, this function assumes that you are loading a...
How to include other files in module?
Yes, it does mean outside your functions. You can use module_load_include() within functions but not outside. The YouTube module gives an example: <?php /** * @file * Youtube field module adds...
How to include other files in module?