From: Geoff Kimball Date: Tue, 1 Dec 2015 18:08:22 +0000 (-0800) Subject: Get Sass tests passing X-Git-Tag: v6.0.5~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ebf43567aa29c82d79dce189263c8a0118c8d35;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Get Sass tests passing --- diff --git a/test/sass/_breakpoint.scss b/test/sass/_breakpoint.scss index cd268b3de..a160ff5b3 100755 --- a/test/sass/_breakpoint.scss +++ b/test/sass/_breakpoint.scss @@ -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))); } diff --git a/test/sass/_selector.scss b/test/sass/_selector.scss index 96e67f29f..5bc9bfd6d 100755 --- a/test/sass/_selector.scss +++ b/test/sass/_selector.scss @@ -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;