Rename alert package
This commit is contained in:
parent
584045b876
commit
a3189f845f
2 changed files with 5 additions and 5 deletions
|
@ -3,7 +3,7 @@
|
||||||
;;;; This file defines a package for generating Bootstrap alert components
|
;;;; This file defines a package for generating Bootstrap alert components
|
||||||
;;;; using Common Lisp macros.
|
;;;; using Common Lisp macros.
|
||||||
|
|
||||||
(defpackage dev.metalisp.sbt/alert
|
(defpackage ml-sbt/alert
|
||||||
(:use :cl)
|
(:use :cl)
|
||||||
(:export
|
(:export
|
||||||
:btn
|
:btn
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
:alert-dismiss-light
|
:alert-dismiss-light
|
||||||
:alert-dismiss-dark))
|
:alert-dismiss-dark))
|
||||||
|
|
||||||
(in-package :dev.metalisp.sbt/alert)
|
(in-package :ml-sbt/alert)
|
||||||
|
|
||||||
(defmacro btn ()
|
(defmacro btn ()
|
||||||
"This macro generates the close button used in a Bootstrap alert when it is set to be dismissible."
|
"This macro generates the close button used in a Bootstrap alert when it is set to be dismissible."
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
(defpackage dev.metalisp.sbt/tests/alert
|
(defpackage ml-sbt/tests/alert
|
||||||
(:use
|
(:use
|
||||||
:cl
|
:cl
|
||||||
:dev.metalisp.sbt/alert
|
:ml-sbt/alert
|
||||||
:rove))
|
:rove))
|
||||||
|
|
||||||
(in-package :dev.metalisp.sbt/tests/alert)
|
(in-package :ml-sbt/tests/alert)
|
||||||
|
|
||||||
(deftest test-btn-macro
|
(deftest test-btn-macro
|
||||||
(testing "Testing btn macro"
|
(testing "Testing btn macro"
|
||||||
|
|
Loading…
Add table
Reference in a new issue