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:
parent
357b3cbbe7
commit
2a9ecc9d63
3 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
require 'test/testhelp'
|
||||
|
||||
class HttpParserTest < Test::Unit::TestCase
|
||||
class Http10ParserTest < Test::Unit::TestCase
|
||||
include Puma
|
||||
|
||||
def test_parse_simple
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue