1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Fix test naming

This commit is contained in:
Evan Phoenix 2011-10-03 14:44:18 -07:00
parent 357b3cbbe7
commit 2a9ecc9d63
3 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
require 'test/testhelp'
class HttpParserTest < Test::Unit::TestCase
class Http10ParserTest < Test::Unit::TestCase
include Puma
def test_parse_simple

View file

@ -5,7 +5,7 @@ require 'test/testhelp'
include Puma
class HttpParserTest < Test::Unit::TestCase
class Http11ParserTest < Test::Unit::TestCase
def test_parse_simple
parser = HttpParser.new

View file

@ -69,7 +69,7 @@ class TestPersistent < Test::Unit::TestCase
end
def test_client_close
def test_client11_close
@client << @close_request
sz = @body[0].size.to_s
@ -77,7 +77,7 @@ class TestPersistent < Test::Unit::TestCase
assert_equal "Hello", @client.read(5)
end
def test_client_close
def test_client10_close
@client << @http10_request
sz = @body[0].size.to_s