~ubuntu-branches/ubuntu/saucy/camping/saucy-proposed

« back to all changes in this revision

Viewing changes to test/test_helper.rb

  • Committer: Package Import Robot
  • Author(s): Paul van Tilburg
  • Date: 2013-06-06 21:57:41 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130606215741-xk9tww2ybvpu42u4
Tags: 2.1.532-1
* New upstream release 
* debian/control: 
  - Bumped standards version to 3.9.4; no changes required 
  - Add build-depend on ruby-minitest
  - Change build depend on ruby-activerecord-2.3 into
    ruby-activerecord-3.2
  - Bump build-depend and depend on ruby-mab to >= 0.0.3
* d/p/allow-POST-through-Rack-File.patch: dropped, applied upstream 

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
  require 'camping-unabridged'
12
12
end
13
13
 
14
 
require 'test/unit'
 
14
require 'minitest/autorun'
15
15
require 'rack/test'
16
16
 
17
 
class TestCase < Test::Unit::TestCase
 
17
class TestCase < MiniTest::Unit::TestCase
18
18
  include Rack::Test::Methods
19
19
    
20
20
  def self.inherited(mod)