Moving tests re: Sam

This commit is contained in:
Jay McCarthy 2012-03-30 23:54:34 -06:00
parent 0f5f611f12
commit 1d19a844f4
3 changed files with 10 additions and 20 deletions

View File

@ -25,4 +25,8 @@
@cite[schelog] @cite[schelog]
@cite[(make-bib #:title "Look ma, no authors")]
@cite[(make-bib #:title "Look ma, no authors" #:author "And no date")]
@(gen) @(gen)

View File

@ -3,9 +3,15 @@ al. 2010, part II)  (Felleisen et al. 2010)
 (Sitaram 1993)  (Sitaram 1993)
 (Look ma, no authors ???)
 (date ???)
Bibliography Bibliography
And no date. Look ma, no authors.
Dorai Sitaram. Programming in Schelog. 1993. Dorai Sitaram. Programming in Schelog. 1993.
http://www.ccs.neu.edu/~dorai/schelog/schelog.html http://www.ccs.neu.edu/~dorai/schelog/schelog.html
Look ma, no authors.
Matthias Felleisen, Robert Bruce Findler, and Matthew Flatt. Semantics Matthias Felleisen, Robert Bruce Findler, and Matthew Flatt. Semantics
Engineering with PLT Redex. MIT Press, 2010. Engineering with PLT Redex. MIT Press, 2010.

View File

@ -1,20 +0,0 @@
#lang racket/base
(require rackunit
scribble/render
scriblib/autobib)
(check-not-exn
(λ ()
(define-cite ~cite citet generate-bib)
(~cite (make-bib #:title "Test with nothing"))
(generate-bib)))
(check-not-exn
(λ ()
(define-cite ~cite citet generate-bib)
(~cite (make-bib #:title "Test with nothing"
#:author (author-name "Quick" "Checkerson")))
(render (list (generate-bib))
(list "test.scrbl"))))