In the beginning there was darkness

This commit is contained in:
Daniel Ziltener 2021-04-12 16:23:58 +02:00
commit 27bcb26c0d
3 changed files with 33 additions and 0 deletions

13
chicken-on-a-raft.egg Normal file
View File

@ -0,0 +1,13 @@
;; -*- mode: scheme -*-
((author "Daniel Ziltener")
(synopsis "Cleanroom WebDriver implementation")
(category testing)
(license "BSD")
(dependencies utf8 r7rs coops)
(test-dependencies srfi-78)
(components
(extension chicken-on-a-raft
(csc-options
"-X" "r7rs"
"-R" "r7rs"
"-sJ"))))

BIN
chicken-on-a-raft.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

20
chicken-on-a-raft.scm Normal file
View File

@ -0,0 +1,20 @@
;; -*- geiser-scheme: chicken -*-
(import (r7rs))
(define-library (chicken-on-a-raft)
(import (scheme base)
coops
coops-primitive-objects
http-client)
(export #f)
(begin
(define-class <Driver> ()
((proc accessor: driver-proc))
((url accessor: driver-url)))
(define-method (initialize-instance ()))
(define-class <Firefox> (<Driver>))
))