| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-04-02 | fix brew tests | Xu Cheng | |
| Fix the `brew tests` problem caused by core/formula separation. | |||
| 2016-03-21 | add HOMEBREW_ENV_PATH internal variable | Xu Cheng | |
| `Library/ENV` like `Library/Homebrew` is part of Homebrew basecode. It should be able to be accessed during the `brew tests`. By adding HOMEBREW_ENV_PATH variable, we allow test suit to locate these codes. | |||
| 2016-02-10 | tests: Add missing version tests | Baptiste Fontaine | |
| Closes Homebrew/homebrew#49031. Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr> | |||
| 2016-01-25 | testing_env: needs_compat utility added | Baptiste Fontaine | |
| Closes Homebrew/homebrew#48302. Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr> | |||
| 2016-01-09 | tests: missing requires added | Baptiste Fontaine | |
| Closes Homebrew/homebrew#47866. Closes Homebrew/homebrew#47861. Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr> | |||
| 2015-08-03 | Core files style updates. | BrewTestBot | |
| Closes Homebrew/homebrew#42354. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2015-07-28 | Move simplecov configuration to dotfile. | Mike McQuaid | |
| 2015-07-28 | testing_env: point to `bundle install` now. | Mike McQuaid | |
| 2015-07-22 | tests: always run fs leak check | Xu Cheng | |
| 2015-07-21 | coverage: stop recording compat codes | Xu Cheng | |
| Closes Homebrew/homebrew#41973. Signed-off-by: Xu Cheng <xucheng@me.com> | |||
| 2015-07-20 | 'brew tests' optional coverage measure added | Baptiste Fontaine | |
| Closes Homebrew/homebrew#41890. Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr> | |||
| 2015-05-27 | add Formulary.core_path method, deprecate Formula.path | Xu Cheng | |
| 2015-05-04 | Stop testing implementation | Jack Nagel | |
| 2015-04-29 | Ensure HOMEBREW_TEMP is respected in all tests | Jack Nagel | |
| 2015-04-29 | Allow test tmpdir to be passed in | Jack Nagel | |
| 2015-04-29 | Extract runtime configuration from global.rb | Jack Nagel | |
| This allows global.rb to be safely loaded in the test environment. | |||
| 2015-04-20 | Revert "Use real repo to run tests" | Jack Nagel | |
| This reverts commit 5aaf13c6cf784cb4be62932b3e528e8f93580a65. | |||
| 2015-04-20 | Use real repo to run tests | Jack Nagel | |
| 2014-07-06 | Close duped output streams before returning | Jack Nagel | |
| 2014-07-03 | Add assert_eql to provide better failure messages for eql? tests | Jack Nagel | |
| 2014-06-23 | Add module for logging filesystem leaks in tests | Jack Nagel | |
| 2014-06-23 | Make the test tmpdir a constant | Jack Nagel | |
| 2014-06-23 | Explicitly create top-level directories for tests | Jack Nagel | |
| 2014-06-23 | Give the temporary test directory a prefix | Jack Nagel | |
| 2014-06-23 | Use Dir.mktmpdir to create temp directory for tests | Jack Nagel | |
| 2014-06-20 | Pass the requested spec into the formula instance | Jack Nagel | |
| 2014-06-19 | Only "extend self" once on the Homebrew module | Jack Nagel | |
| 2014-06-18 | Combine Homebrew module declarations in testing_env | Jack Nagel | |
| 2014-06-18 | Switch to Minitest | Jack Nagel | |
| 2014-06-18 | Move test helpers into Homebrew::TestCase | Jack Nagel | |
| 2014-06-18 | Use a custom test class so we can avoid monkeypatching | Jack Nagel | |
| 2014-06-16 | Don't load unused compat files for tests | Jack Nagel | |
| 2014-06-10 | Remove unnecessary require | Jack Nagel | |
| 2014-06-10 | Remove unnecessary code | Jack Nagel | |
| 2014-06-10 | Rename TEST_FOLDER to TEST_DIRECTORY | Jack Nagel | |
| 2014-06-10 | Remove ABS__FILE constant from test environment | Jack Nagel | |
| 2014-06-09 | Use RbConfig.ruby if it's available | Jack Nagel | |
| 2014-06-09 | Fix formula test helper parameters | Jack Nagel | |
| 2014-05-14 | Taps: cleanup regexps around Taps | Tsukasa OMOTO | |
| Closes Homebrew/homebrew#29139. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2014-05-03 | The \w character class already includes underscore | Jack Nagel | |
| Newer versions of Ruby issue a warning for repeated character classes. | |||
| 2014-04-24 | Make the on-disk representation of taps unambiguous | Tsukasa OMOTO | |
| This commit supports "-" and "_" in names of user and repository. Closes Homebrew/homebrew#28203. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2014-02-28 | Add TapDependency | Jack Nagel | |
| 2014-01-11 | Fix tokenizing openssl style versions | Jack Nagel | |
| Fixes Homebrew/homebrew#25736. | |||
| 2013-12-14 | Add HOMEBREW_TEMP to testing environment | Jack Nagel | |
| 2013-12-09 | Extract constants for checkums in tests | Jack Nagel | |
| 2013-10-25 | Stop coercing MACOS_VERSION to a float | Jack Nagel | |
| 2013-10-18 | Add OS.mac? and OS.linux? | Jack Nagel | |
| 2013-10-10 | git_etc: update based on bottle etc/var changes. | Mike McQuaid | |
| 2013-09-07 | Optionally use git to keep brew etc versioned. | Mike McQuaid | |
| Still in alpha state. Handles defaults and merging changes with new versions. Enable by setting the HOMEBREW_GIT_ETC environment variable. Closes Homebrew/homebrew#15751. Closes Homebrew/homebrew#17713. | |||
| 2013-08-19 | Use File::PATH_SEPARATOR globally instead of ':' | Amos Wenger | |
| On Unix, the path separator is ':', whereas on Windows, it is ';'. This is the first of a series of patch to bring macbrew's and winbrew's codebases closer together. The main places the magic constant ':' was being used were: - the $PATH environment variable - CMAKE-related environment variables - pkg-config related environment variables Closes Homebrew/homebrew#21921. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
