Skip to content
This repository has been archived by the owner on Apr 7, 2021. It is now read-only.

Commit

Permalink
add 'test-unit' gem to test.gemfile
Browse files Browse the repository at this point in the history
was getting this error:

    test/proxy_test.rb:8:in `require': cannot load such file -- test/unit (LoadError)
      from test/proxy_test.rb:8:in `<main>'

(using ruby 2.2.1)

adding test-unit solved that issue

see also: rails/rails#18572
  • Loading branch information
jomo committed Mar 19, 2015
1 parent 84fce5a commit 3c5e292
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions test.gemfile
Expand Up @@ -2,3 +2,4 @@ source 'https://rubygems.org'
gem 'rack'
gem 'rest-client', '~>1.3'
gem 'addressable', '~>2.3'
gem 'test-unit'
4 changes: 4 additions & 0 deletions test.gemfile.lock
Expand Up @@ -3,9 +3,12 @@ GEM
specs:
addressable (2.3.4)
mime-types (1.23)
power_assert (0.2.2)
rack (1.5.2)
rest-client (1.6.7)
mime-types (>= 1.16)
test-unit (3.0.8)
power_assert

PLATFORMS
ruby
Expand All @@ -14,3 +17,4 @@ DEPENDENCIES
addressable (~> 2.3)
rack
rest-client (~> 1.3)
test-unit

0 comments on commit 3c5e292

Please sign in to comment.