From: Graham Percival Date: Thu, 1 Sep 2011 06:58:23 +0000 (+0100) Subject: Add regtest for \contextStringTuning. X-Git-Tag: release/2.15.10-1~25 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c4862f8f575d02aa910a84f1db72445165bb81fb;p=lilypond.git 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. --- 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 + } +>> +