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();
|
2014-07-01 01:51:08 -05:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|