it('joins the url and query with "?" if no "?" is found', function () {
            var actual = Helpers.joinUrlWithQuery('foo', { bar: 'baz' });
            var expected = 'foo?bar=baz';
            expect(actual).toEqual(expected);
        });