Commit 1c1e7975a9d9485897476741c825a9816c78b8ee

Authored by Axilleas Pipinellis
1 parent 53413f12

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>
Showing 2 changed files with 5 additions and 0 deletions   Show diff stats
@@ -153,6 +153,9 @@ group :development, :test do @@ -153,6 +153,9 @@ group :development, :test do
153 gem "launchy" 153 gem "launchy"
154 gem 'factory_girl_rails' 154 gem 'factory_girl_rails'
155 155
  156 + # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
  157 + gem 'minitest'
  158 +
156 # Generate Fake data 159 # Generate Fake data
157 gem "ffaker" 160 gem "ffaker"
158 161
@@ -263,6 +263,7 @@ GEM @@ -263,6 +263,7 @@ GEM
263 treetop (~> 1.4.8) 263 treetop (~> 1.4.8)
264 method_source (0.8.1) 264 method_source (0.8.1)
265 mime-types (1.23) 265 mime-types (1.23)
  266 + minitest (4.7.4)
266 modernizr (2.6.2) 267 modernizr (2.6.2)
267 sprockets (~> 2.0) 268 sprockets (~> 2.0)
268 multi_json (1.7.2) 269 multi_json (1.7.2)
@@ -538,6 +539,7 @@ DEPENDENCIES @@ -538,6 +539,7 @@ DEPENDENCIES
538 kaminari (~> 0.14.1) 539 kaminari (~> 0.14.1)
539 launchy 540 launchy
540 letter_opener 541 letter_opener
  542 + minitest
541 modernizr (= 2.6.2) 543 modernizr (= 2.6.2)
542 mysql2 544 mysql2
543 omniauth (~> 1.1.3) 545 omniauth (~> 1.1.3)