public void TestLoadAutomationActions()
        {
            var astr = ActionHandler.Automaton();

            Assert.IsNotNull(astr);
            Assert.AreEqual("require", astr[0].location);
            Assert.AreEqual("Route", astr[0].first);
            Assert.AreEqual("Route: Lodgings", astr[0].second);
            Assert.AreEqual(new[] { "1", "RentLodgings" }, astr[0].third);
        }