public void FindDescription()
        {
            var html   = Fixtures.Load("dotnet-rocks.html");
            var result = MetadataParser.LoadMetadata(html, "http://foo.com");

            Check.That(result.Description).IsEqualTo(".NET Rocks! is a weekly talk show for anyone interested in programming on the Microsoft .NET platform. The shows range from introductory information to hardcore geekiness.");
        }
        public void FindsTitleTag()
        {
            var html   = Fixtures.Load("dotnet-rocks.html");
            var result = MetadataParser.LoadMetadata(html, "http://foo.com");

            Check.That(result.Title).IsEqualTo(".NET Rocks! vNext");
        }
        public void UnescapesMetadata()
        {
            var html   = Fixtures.Load("bikeshed-91.html");
            var result = MetadataParser.LoadMetadata(html, "http://bikeshed.fm/91");

            Check.That(result.Title).IsEqualTo("91: I Think It's a Fish | The Bike Shed");
            Check.That(result.Description).IsEqualTo("Derek briefly complains of the staleness of the asset pipeline in Rails 5, before Sean catches Derek up on Rails 5.1's support for Webpack, Yarn, and ES6. We also discuss the pain of deprecations in the upgrade to Rails 5.");
        }