3 using System.Collections.Generic;
4 using Nancy;
5
6 public class ShortUrlModule : NancyModule
7 {
8 private static readonly Dictionary<string, string> urlMap = new Dictionary<Read more...
TL;DR Nancy v0.8.0 is out, loads of cool new features such as static content (so you *finally* don’t have to do it yourself :-P), basic authentication support, and CSRF protection, and enhancements to things like error handling (with fancy pants error pages) and the test framework. We also have a fantastic new logo by Nicolas Garfinkiel […]
The post Nancy v0.8.0 – Best Laid Plans.. first appeared on GrumpyDev.
Introduction After several months of neglect, we are currently working on getting the Nancy project ship shape on Mono. We’ve gotten to the point now where everything builds and runs just fine, but we have a few tests that fail when running on Linux/Mono. The failures we are seeing are obviously bugs in the tests/stubs/mocks […]
The post Debugging xUnit Tests Using MonoDevelop first appeared on GrumpyDev.