summaryrefslogtreecommitdiff
path: root/test/mock_pkg_resource.erl
Commit message (Collapse)AuthorAgeFilesLines
* Update mock so existing tests passFred Hebert2015-05-131-3/+8
|
* don't load package registry unless there are pkg deps to solveTristan Sloughter2015-04-281-1/+1
|
* add test for single atom pkg dep picking the highest availableTristan Sloughter2015-04-111-1/+16
|
* treat _checkouts as deps that are always compiledTristan Sloughter2015-03-211-3/+3
|
* Add tests and fixes for packages upgradesFred Hebert2015-02-231-2/+2
| | | | | | | | | | - Track level of packages properly, they're not level 0 anymore (this could yield an issue where a src dep takes precedence over a pkg dep) - Proper stable sort of vertices in the digraph module - PkgDeps no longer 'see themselves' when fetching and upgrading after locking themselves - Pkg Locks are added to pkg deps rather than source deps - Updating test cases to support pkg mocking on top of src mocking
* replace package management with hex.pmTristan Sloughter2015-02-171-8/+11
|
* Change mock_pkg_resource to create ebin directoryKelly McLaughlin2015-02-061-1/+1
| | | | | | | | | Change mock_pkg_resource to use rebar_test_utils:create_empty_app so that an ebin directory is created which is a good expectation for a package. Also revert the check in rebar_fetch:download_source to check for an ebin directory before adding it to the code path for package installs. If a package does not have an ebin directory it is probably a good for an exception to be thrown.
* Adding pkg deps tests and refactoringsFred Hebert2014-12-161-0/+143
- Adding tests for package deps - Adding conflict/override warnings for package deps - Adding cycle detection for packages - Adding cycle detection for mixed packages+source - Fixing internal dependency format of package resources when converted to rebar_app_info - normalizing level-order prioritization to be based on lexicographical sort of app names rather than traversal order (which is undefined for package deps) - Fixing tests for source deps for deep cycle detection - Fixing bugs with source deps - Relaxed version format checks for test utils A lot of fixes are combined in there because I didn't want to commit non-passing code, and many bugs were found when adding the second batch of tests as part of the original effort.