ficdown/Ficdown.Parser.Tests/IntegrationTests.cs

18 lines
405 B
C#
Raw Normal View History

2014-06-30 16:57:14 -05:00
namespace Ficdown.Parser.Tests
2014-06-30 11:59:56 -05:00
{
2014-06-30 16:57:14 -05:00
using System.Text;
using TestStories;
using Xunit;
public class IntegrationTests
2014-06-30 11:59:56 -05:00
{
2014-06-30 16:57:14 -05:00
[Fact]
public void CanParseValidStoryFile()
{
var parser = new FicdownParser();
var storyText = Encoding.UTF8.GetString(Resources.TheRobotKing);
2014-06-30 16:57:14 -05:00
var story = parser.ParseStory(storyText);
}
2014-06-30 11:59:56 -05:00
}
}