Remove http unused package

This commit is contained in:
Harshavardhana
2015-01-21 15:14:49 -08:00
parent bd1df87bd3
commit 546e762abf
2 changed files with 0 additions and 153 deletions

View File

@@ -1,19 +0,0 @@
package http
import (
. "gopkg.in/check.v1"
"testing"
)
type MySuite struct{}
var _ = Suite(&MySuite{})
func Test(t *testing.T) { TestingT(t) }
func (s *MySuite) TestHTTP(c *C) {
server := NewServer()
err := server.Listen("localhost:7000")
c.Assert(err, IsNil)
c.Assert(server.GetlistenURL(), Not(Equals), "")
}