public void converts_decimal_to_decimal_value()
        {
            decimal val    = 1234.56789m;
            var     result = val.AstFromValue(null, new DecimalGraphType());

            result.ShouldNotBeNull();
            result.ShouldBeOfType <DecimalValue>();
        }