Description: Need to 'extend', not 'include' Rack::Test::Methods
 Bacon is used incorrectly. We need to use instead instead of include
 as described in https://github.com/chneukirchen/bacon/issues/4
 .
 ruby-rack-flash3 (1.0.3-1) UNRELEASED; urgency=low
 .
   * Initial release (Closes: #719308)
Author: Ben Armstrong <synrg@sanctuary.nslug.ns.ca>
Bug-Debian: http://bugs.debian.org/719308
Forwarded: https://github.com/nakajima/rack-flash/issues/12
Last-Update: 2013-08-15

--- ruby-rack-flash3-1.0.3.orig/test/test_flash.rb
+++ ruby-rack-flash3-1.0.3/test/test_flash.rb
@@ -1,7 +1,7 @@
 require File.dirname(__FILE__) + '/helper'
 
 describe 'Rack::Flash' do
-  include Rack::Test::Methods
+  extend Rack::Test::Methods
 
   def app(&block)
     return Sinatra.new &block
@@ -154,4 +154,4 @@ describe 'Rack::Flash' do
   end
 
   # Testing sessions is a royal pain in the ass.
-end
\ No newline at end of file
+end
