Example #1
0
				Host: host,
				Domain: models.DomainFields{
					Name: "the-domain",
				},
				Path: path,
				Port: port,
			}
		})

		Context("when the host is blank", func() {
			BeforeEach(func() {
				host = ""
			})

			It("returns the domain", func() {
				Expect(r.URL()).To(Equal("the-domain"))
			})

			Context("when the path is present", func() {
				BeforeEach(func() {
					path = "/the-path"
				})

				It("returns the domain and path", func() {
					Expect(r.URL()).To(Equal("the-domain/the-path"))
				})
			})

			Context("when the port is present", func() {
				BeforeEach(func() {
					port = 9001