public void CorrectlyIdentifiesText()
        {
            var interpreter = new IfInterpreter();
            var context     = new SkillFlowInterpretationContext(new SkillFlowInterpretationOptions());

            context.Components.Push(new SceneInstructions());
            Assert.True(interpreter.CanInterpret("if test {", context));
        }
        public void CorrectlyIdentifiesFalseText()
        {
            var interpreter = new IfInterpreter();

            Assert.False(interpreter.CanInterpret("iffy", new SkillFlowInterpretationContext(new SkillFlowInterpretationOptions())));
        }