diff options
author | Axilleas Pipinellis <axilleas@archlinux.gr> | 2013-05-06 19:53:19 +0300 |
---|---|---|
committer | Axilleas Pipinellis <axilleas@archlinux.gr> | 2013-05-07 10:12:35 +0300 |
commit | 1c1e7975a9d9485897476741c825a9816c78b8ee (patch) | |
tree | d84d246bab94f5980193a7d5d4f3ddad710eba7d /Gemfile | |
parent | 53413f128d049a7f45e4b3daf3dd0c3408a777e9 (diff) | |
download | gitlab-ce-1c1e7975a9d9485897476741c825a9816c78b8ee.tar.gz |
Add minitest to Gemfile. Fix #3826
There are occasions where minitest is not bundled in packaged
versions of ruby that some OSes distribute (eg Fedora). Adding
minitest to Gemfile ensures that it gets loaded and tests can run.
Signed-off-by: Axilleas Pipinellis <axilleas@archlinux.gr>
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -153,6 +153,9 @@ group :development, :test do gem "launchy" gem 'factory_girl_rails' + # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826) + gem 'minitest' + # Generate Fake data gem "ffaker" |