From c4862f8f575d02aa910a84f1db72445165bb81fb Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Thu, 1 Sep 2011 07:58:23 +0100 Subject: [PATCH] Add regtest for \contextStringTuning. Somebody might want to make a better test / better texidoc, but at the moment I just want to have something in there. This function was not previously tested. --- input/regression/context-string-tuning.ly | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 input/regression/context-string-tuning.ly diff --git a/input/regression/context-string-tuning.ly b/input/regression/context-string-tuning.ly new file mode 100644 index 0000000000..2281bb9a82 --- /dev/null +++ b/input/regression/context-string-tuning.ly @@ -0,0 +1,24 @@ +\version "2.14.0" + +\header { + texidoc=" +Using \contextStringTuning does not break compiling. +" +} + +mynotes = { + c'4 e' g' c'' | + e''4 g'' b'' c''' +} + +<< + \new Staff { + \clef treble + \mynotes + } + \new TabStaff { + \contextStringTuning #'custom-tuning + \mynotes + } +>> + -- 2.39.5