diff options
| author | 2025-03-06 18:33:57 -0500 | |
|---|---|---|
| committer | 2025-03-06 18:33:57 -0500 | |
| commit | 9f785bbb10cc53fe3b7ef6e0df52b411b43bb3e4 (patch) | |
| tree | f55dd7dd0af0a13e1280aa1a52e8111961215e5b /tests/basic.sld | |
| parent | better flags handling (diff) | |
Diffstat (limited to 'tests/basic.sld')
| -rw-r--r-- | tests/basic.sld | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/basic.sld b/tests/basic.sld new file mode 100644 index 0000000..91d5abd --- /dev/null +++ b/tests/basic.sld @@ -0,0 +1,29 @@ +#| Copyright 2025 Peter McGoron + | + | Licensed under the Apache License, Version 2.0 (the "License"); + | + | you may not use this file except in compliance with the License. + | You may obtain a copy of the License at + | + | http://www.apache.org/licenses/LICENSE-2.0 + | + | Unless required by applicable law or agreed to in writing, software + | distributed under the License is distributed on an "AS IS" BASIS, + | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + | See the License for the specific language governing permissions and + | limitations under the License. + |# + +(define-library (SAHP test basic) + (import (scheme base) (scheme case-lambda) + (SAHP) (SAHP test shim) (srfi 64) (srfi 194) (srfi 252)) + (cond-expand (chicken (import (chicken condition))) + (else)) + (export basic-test) + (include "basic.scm") + (begin + (define (basic-test) + (setup-runner) + (test-creating-SAHP) + (test-numeric-tower-subtyping) + (test-overrides)))) |
