aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc/static/scss/tests/utilities
diff options
context:
space:
mode:
Diffstat (limited to 'pyblackbird_cc/static/scss/tests/utilities')
-rw-r--r--pyblackbird_cc/static/scss/tests/utilities/_api.test.scss75
1 files changed, 0 insertions, 75 deletions
diff --git a/pyblackbird_cc/static/scss/tests/utilities/_api.test.scss b/pyblackbird_cc/static/scss/tests/utilities/_api.test.scss
deleted file mode 100644
index 304d8d1..0000000
--- a/pyblackbird_cc/static/scss/tests/utilities/_api.test.scss
+++ /dev/null
@@ -1,75 +0,0 @@
-@import "../../functions";
-@import "../../variables";
-@import "../../variables-dark";
-@import "../../maps";
-@import "../../mixins";
-
-$utilities: ();
-
-@include describe("utilities/api") {
- @include it("generates utilities for each breakpoints") {
- $utilities: (
- margin: (
- property: margin,
- values: auto
- ),
- padding: (
- property: padding,
- responsive: true,
- values: 1rem
- ),
- font-size: (
- property: font-size,
- values: (large: 1.25rem),
- print: true
- )
- ) !global;
-
- $grid-breakpoints: (
- xs: 0,
- sm: 333px,
- md: 666px
- ) !global;
-
- @include assert() {
- @include output() {
- @import "../../utilities/api";
- }
-
- @include expect() {
- // margin is not set to responsive
- .margin-auto {
- margin: auto !important;
- }
-
- // padding is, though
- .padding-1rem {
- padding: 1rem !important;
- }
-
- .font-size-large {
- font-size: 1.25rem !important;
- }
-
- @media (min-width: 333px) {
- .padding-sm-1rem {
- padding: 1rem !important;
- }
- }
-
- @media (min-width: 666px) {
- .padding-md-1rem {
- padding: 1rem !important;
- }
- }
-
- @media print {
- .font-size-print-large {
- font-size: 1.25rem !important;
- }
- }
- }
-
- }
- }
-}