public void ReturnsSqrlHandlerIfRequestTypeIsPost()
            {
                const string post = "POST";

                var handler = _factory.GetHandler(null, post, null, null);

                handler.Should().NotBeNull();
                handler.Should().BeOfType <SqrlHttpHandler>();
            }