%% 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.25.35/input/regression/other/beat-base.ly"
\sourcefileline 0
\version "2.25.27"

\header {
  texidoc = "This is a set of tests of the @code{beat-base} Scheme function for
single-fraction time signatures.  Problems are reported in the standard error
stream."
}

\include "testing-functions.ily"
#(ly:set-option 'warning-as-error #t)

#(expect-equal "signature not found in settings"
  (beat-base '(6 . 7) '())
  1/7)
#(expect-equal "signature not found in settings; senza misura"
  (beat-base #f '())
  +inf.0)
#(expect-equal "signature not found in settings; zero denominator"
  (beat-base '(1 . 0) '())
  +inf.0)
#(expect-equal "signature not found in settings; subdivided fraction"
  (beat-base '((5 12) . 13) '())
  1/13)

#(expect-equal "base not found in settings"
  (beat-base '(6 . 7) '(((6 . 7) . ())))
  1/7)
#(expect-equal "base not found in settings; senza misura"
  (beat-base #f '((#f . ())))
  +inf.0)
#(expect-equal "base not found in settings; zero denominator"
  (beat-base '(1 . 0) '(((1 . 0) . ())))
  +inf.0)
#(expect-equal "base not found in settings; subdivided fraction"
  (beat-base '((5 12) . 13) '((((5 12) . 13) . ())))
  1/13)

#(expect-equal "base found in settings"
  (beat-base '(6 . 8) '(((6 . 8) . ((beatBase . 1/3)))))
  1/3)
#(expect-equal "base found in settings; senza misura"
  (beat-base #f '((#f . ((beatBase . 17)))))
  17)
#(expect-equal "base found in settings; zero denominator"
  (beat-base '(1 . 0) '(((1 . 0) . ((beatBase . 1/12)))))
  1/12)
#(expect-equal "base found in settings; subdivided fraction"
  (beat-base '((5 12) . 13) '((((5 12) . 13) . ((beatBase . 1/17)))))
  1/17)



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