test/delegator_test.rb in sinatra-1.4.5 vs test/delegator_test.rb in sinatra-1.4.6

- old
+ new

@@ -1,7 +1,7 @@ require File.expand_path('../helper', __FILE__) -class DelegatorTest < Test::Unit::TestCase +class DelegatorTest < Minitest::Test class Mirror attr_reader :last_call def method_missing(*a, &b) @last_call = [*a.map(&:to_s)] @last_call << b if b