separated html into its own folder
This commit is contained in:
parent
b1d0832a30
commit
b396a02d03
|
@ -1,3 +1,3 @@
|
|||
#lang racket/base
|
||||
(require "private/html.rkt" "private/coveralls.rkt" "private/raw.rkt")
|
||||
(require "private/html/html.rkt" "private/coveralls.rkt" "private/raw.rkt")
|
||||
(provide generate-html-coverage generate-coveralls-coverage generate-raw-coverage)
|
||||
|
|
|
@ -13,14 +13,14 @@
|
|||
syntax/parse
|
||||
unstable/sequence
|
||||
(only-in xml write-xexpr)
|
||||
"format-utils.rkt"
|
||||
"shared.rkt")
|
||||
"../format-utils.rkt"
|
||||
"../shared.rkt")
|
||||
|
||||
|
||||
(module+ test
|
||||
(require rackunit "../cover.rkt" racket/runtime-path racket/set "file-utils.rkt")
|
||||
(define-runtime-path root "..")
|
||||
(define-runtime-path tests/basic/prog.rkt "../tests/basic/prog.rkt")
|
||||
(require rackunit "../../cover.rkt" racket/runtime-path racket/set "../file-utils.rkt")
|
||||
(define-runtime-path root "../..")
|
||||
(define-runtime-path tests/basic/prog.rkt "../../tests/basic/prog.rkt")
|
||||
(define (mock-covered? pos)
|
||||
(cond [(<= 1 pos 6) 'covered]
|
||||
[(= 6 pos) 'missing]
|
Loading…
Reference in New Issue
Block a user