summaryrefslogtreecommitdiffstats
path: root/tests/mocks
AgeCommit message (Collapse)AuthorFilesLines
2022-12-01Fixes #6174George Petculescu1-0/+2
Improves Log_test::test_configuration() test
2022-01-08.gitignore tests/mocks/database/ci_test.sqliteAndrey Andreev1-0/+0
2022-01-08Fix #92Andrey Andreev1-0/+0
2022-01-05Finally drop CI_EncryptAndrey Andreev2-16/+0
2022-01-05Drop more deprecated functionalityAndrey Andreev1-0/+0
2022-01-05Drop some previously deprecated functionalityAndrey Andreev1-0/+0
2022-01-05Whoops. Broke something in 004f0a1b41c27e3d40f62a51300599d35c54c0c0Andrey Andreev1-0/+0
2022-01-05Polish changes from PR #5373Andrey Andreev1-0/+0
2022-01-05Update logging testsAndrey Andreev1-0/+0
2022-01-05Fix broken tests in developAndrey Andreev1-0/+0
2022-01-05Merge branch '3.1-stable' into developAndrey Andreev1-0/+0
2022-01-05Bye Travis, Hello GH ActionsAndrey Andreev1-0/+0
2021-12-20Merge pull request #6074 from philsturgeon/ci3-php8Andrey Andreev6-26/+26
CodeIgniter 3.0 on PHP 8
2021-11-17Merge branch 'php80-patch1' of https://github.com/sapics/CodeIgniter into ↵Phil Sturgeon5-21/+21
ci3-php8
2021-10-05Fixes styleguide ORsGeorge Petculescu1-5/+5
2021-10-04Fixes CREATE TABLE IF NOT EXISTS on pdo_pgsql_forge; checking for dummy data ↵George Petculescu1-5/+5
DB operations result returns
2021-09-14Merge pull request #6045 from gxgpet/develop_fixtravisAndrey Andreev1-2/+16
Fixes Travis pipeline. Adding PHPUnit 8.
2021-05-31Adding PHPUnit 8George Petculescu1-1/+15
2021-05-31Upgrade to latest mikey179/vfsstreamGeorge Petculescu1-1/+1
2021-01-22Replace travis-ci to github actions for php8.0sapics5-21/+21
2019-10-08Merge pull request #5842 from sapics/chore/fix-indentAndrey Andreev2-3/+3
Fix indentation / clear whitespace
2019-09-25Fix indentsapics2-3/+3
2018-04-24Merge branch '3.1-stable' into developAndrey Andreev1-1/+1
2018-04-24Fix test_like_set_side() unit test (dataProvider wasn't working)Andrey Andreev1-2/+2
2017-12-27Merge pull request #5367 from carusogabriel/clean-elsesAndrey Andreev1-4/+2
Clean elses
2017-12-20Clean elsesGabriel Caruso1-4/+2
2017-03-24Merge branch '3.1-stable' into developAndrey Andreev1-4/+4
Conflicts resolved: system/core/CodeIgniter.php system/core/Common.php system/core/Input.php system/helpers/cookie_helper.php tests/codeigniter/helpers/html_helper_test.php user_guide_src/source/changelog.rst user_guide_src/source/conf.py user_guide_src/source/installation/downloads.rst user_guide_src/source/installation/upgrading.rst user_guide_src/source/libraries/input.rst
2017-03-06Fix #5044; add unit tests for img() HTML helperAndrey Andreev1-4/+4
2016-12-14Move csrf_verify() call out of CI_InputAndrey Andreev1-30/+0
2016-12-14Isolate CI_Security instantiation from CI_Input; improve testsAndrey Andreev3-26/+5
2016-12-14Finally drop CI_Input::_sanitize_globals()Andrey Andreev1-18/+1
Close #4101
2016-12-12Remove previously deprecated Cart LibraryAndrey Andreev1-1/+0
2016-12-08Merge pull request #4932 from rhynodesigns/patch-1Andrey Andreev1-2/+2
[ci skip] Fix a comment typo in unit tests
2016-12-08Spelling: convinient -> convenientRyan McAllen1-2/+2
2016-05-20Merge pull request #4638 from kasimtan/phpdoc_fixesAndrey Andreev5-5/+0
[ci skip] Fixed PHPDoc parameter name and type discrepancies
2016-05-19Fixed PHPDoc parameter name and type discrepanciesKasim Tan5-5/+0
2015-08-03[ci skip] Normalize tabs/spacesAndrey Andreev1-1/+1
Partial changes from PR #4016
2015-02-27Make CI_Input:: read-only as wellAndrey Andreev1-0/+8
2015-02-19test_db_failover is failing after 'autoinit' removal ...Andrey Andreev1-1/+1
2015-02-19Remove 'autoinit' DB settingAndrey Andreev1-2/+1
It doesn't make sense to do a load->database() call but not connect to the database. IIRC there was more stuff in CI_DB_driver::initialize() at some point, so that was probably the reason why the setting existed in the first place. However, now it only results in users making invalid bug reports because they don't understand the feature ... Examples during just the past 2 weeks: #3571 #3601 #3607
2015-02-17Fix #3572: CI_Security::_remove_evil_attributes()Andrey Andreev1-0/+5
2015-01-29fix typo in commentsClaudio Galdiolo1-2/+2
2015-01-29fix typo in commentsClaudio Galdiolo1-2/+2
2015-01-29fix typo in commentsClaudio Galdiolo1-3/+3
2015-01-20Ignore mysql_*connect() E_DEPRECATED errors in testsAndrey Andreev1-0/+7
2015-01-12Added support for running unit tests on PHP 5.2Dan Bernardic1-17/+17
Signed-off-by: Dan Bernardic <dan.bernardic@gmail.com>
2015-01-11Added a unit test for #3464Dan Bernardic1-4/+9
Signed-off-by: Dan Bernardic <dan.bernardic@gmail.com>
2014-10-05config_item() to return NULL instead of FALSE for non-existing itemsAndrey Andreev1-1/+1
Close #3001 Close #3232 Related: #3244
2014-02-24Don't use globalsAndrey Andreev1-0/+2
- Use load_class() to get objects during bootstrap process. - Change load_class() to accept a class constructor parameter instead of previously unused class name prefix. - Change CI_Router::__construct() to accept as a parameter.
2014-02-20CI_Utf8-related changesAndrey Andreev1-3/+6
- Give priority to mb_convert_encoding() over iconv() in clean_string() (partially fixes #261) - Add more proper unit tests