%% Generated by lilypond-book
%% Options: [exampleindent=10.16\mm,indent=0\mm,line-width=160\mm,paper-height=845.047\pt,paper-width=597.508\pt,papersize='(cons (* 597.508 pt) (* 845.047 pt))]
\include "lilypond-book-preamble.ly"


% ****************************************************************
% Start cut-&-pastable-section
% ****************************************************************

#(ly:set-option 'eps-box-padding 3.000000)



\paper {
  #(set-paper-size '(cons (* 597.508 pt) (* 845.047 pt)))
  indent = 0\mm
  line-width = 160\mm
  % offset the left padding, also add 1mm as lilypond creates cropped
  % images with a little space on the right
  line-width = #(- line-width (* mm  3.000000) (* mm 1))
}

\layout {
  
}




% ****************************************************************
% ly snippet:
% ****************************************************************
\sourcefilename "/lilypond-2.26.0/input/regression/other/time-signature-fraction.ly"
\sourcefileline 0
\version "2.25.28"

\header {
  texidoc = "The deprecated context property @code{timeSignatureFraction}
accesses the value of @code{timeSignature}."
}

#(ly:set-option 'warning-as-error #t)
#(ly:expect-warning
  (ly:translate-cpp-warning-scheme
   "the property '%s' is deprecated; use '%s'")
  "timeSignatureFraction" "timeSignature")

%% It is unnecessary to test every available access method: there are other
%% tests covering them.  It is enough to cover this property's old->new and
%% new->old conversions somehow.
{
  %% setting timeSignatureFraction sets timeSignature
  \set Score.timeSignatureFraction = ##f
  \contextPropertyCheck Score.timeSignature ##f

  \set Score.timeSignatureFraction = 22/7
  \contextPropertyCheck Score.timeSignature 22/7

  %% getting timeSignatureFraction gets timeSignature or a fraction derived from
  %% it
  \set Score.timeSignature = ##f
  \applyContext % TODO: Use \contextPropertyCheck once issue 6835 is fixed.
  #(lambda (ctx)
    (or
     (equal? (ly:context-property ctx 'timeSignatureFraction) #f)
     (ly:error "fail")))

  \set Score.timeSignature = 37/73
  \applyContext
  #(lambda (ctx)
    (or
     (equal? (ly:context-property ctx 'timeSignatureFraction) '(37 . 73))
     (ly:error "fail")))

  \set Score.timeSignature = #'((2 3) . 8)
  \applyContext
  #(lambda (ctx)
    (or
     (equal? (ly:context-property ctx 'timeSignatureFraction) '(5 . 8))
     (ly:error "fail")))

  \set Score.timeSignature = #'((3 . 6) (2 . 2))
  \applyContext
  #(lambda (ctx)
    (or
     (equal? (ly:context-property ctx 'timeSignatureFraction) '(9 . 6))
     (ly:error "fail")))

  s
}



% ****************************************************************
% end ly snippet
% ****************************************************************
