aboutsummaryrefslogtreecommitdiff
path: root/tests/html-components/component.scm
diff options
context:
space:
mode:
Diffstat (limited to 'tests/html-components/component.scm')
-rw-r--r--tests/html-components/component.scm36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/html-components/component.scm b/tests/html-components/component.scm
new file mode 100644
index 00000000..a1fbdfbc
--- /dev/null
+++ b/tests/html-components/component.scm
@@ -0,0 +1,36 @@
+(define-module (test html caltable)
+ :use-module (srfi srfi-64)
+ :use-module (srfi srfi-64 test-error)
+ :use-module (srfi srfi-88)
+ :use-module (calp translation)
+
+ :use-module (calp html components)
+ )
+
+(test-equal
+ '(button (@ (class "btn") (onclick "onclick")) "Body")
+ (btn onclick: "onclick" "Body"))
+
+(test-equal "href button, without body"
+ '(a (@ (class "btn") (href "href")))
+ (btn href: "href"))
+
+(test-error 'wrong-type-arg
+ (btn href: "a" onclick: "b"))
+
+(test-equal "btn no specifier, but class"
+ '(button (@ (class "btn test")) "body")
+ (btn class: '("test") "body"))
+
+;; tabset
+
+(test-equal '(link (@ (type "text/css") (rel "stylesheet") (href "style.css")))
+ (include-css "style.css"))
+
+(test-equal
+ '(link (@ (type "text/css") (rel "stylesheet") (href "style.css") (class "test")))
+ (include-css "style.css" '(class "test")))
+
+(test-equal
+ '(link (@ (type "text/css") (rel "alternate stylesheet") (href "style.css")))
+ (include-alt-css "style.css"))