]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Get Sass tests passing
authorGeoff Kimball <geoff@zurb.com>
Tue, 1 Dec 2015 18:08:22 +0000 (10:08 -0800)
committerGeoff Kimball <geoff@zurb.com>
Tue, 1 Dec 2015 18:08:22 +0000 (10:08 -0800)
test/sass/_breakpoint.scss
test/sass/_selector.scss

index cd268b3dee458987b94090915acecefb3594d9c1..a160ff5b341b7fb0921975812e7050be81ab4495 100755 (executable)
@@ -4,7 +4,7 @@
 @include describe('Breakpoint') {
   @include it('converts a named breakpoint to an em value') {
     $actual: breakpoint(medium);
-    $expected: '(min-width: 32em)';
+    $expected: '(min-width: 40em)';
 
     @include should(expect($actual), to(be($expected)));
   }
@@ -18,7 +18,7 @@
 
   @include it('creates an only range out of a named breakpoint') {
     $actual: breakpoint(medium only);
-    $expected: '(min-width: 32em) and (max-width: 63.9375em)';
+    $expected: '(min-width: 40em) and (max-width: 63.9375em)';
 
     @include should(expect($actual), to(be($expected)));
   }
index 96e67f29f9be67eabd6cd74aa44ea2f1cc793625..5bc9bfd6ddab2c70ce39c7ccdb0e2118413ae051 100755 (executable)
@@ -3,7 +3,7 @@
 @include describe('Text inputs') {
   @include it('creates a selector out of a list of text input types') {
     $actual: #{text-inputs(text password)};
-    $expected: '[type='text'], [type='password']';
+    $expected: "[type='text'], [type='password']";
 
     @debug $actual;