]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
fix Sass Unit Test for ratio-to-percentage function 9450/head
authorandycochran <andrewthomascochran@gmail.com>
Wed, 7 Dec 2016 03:12:40 +0000 (22:12 -0500)
committerandycochran <andrewthomascochran@gmail.com>
Wed, 7 Dec 2016 03:12:40 +0000 (22:12 -0500)
test/sass/_components.scss

index 90d284865ed1d81c03f140bf5f0041a202c593fb..0e8bf0e705eba143252e61ed41cc7665fea2e7b8 100644 (file)
@@ -1,13 +1,14 @@
 @import "true";
 
+@import '../../scss/util/math';
 @import '../../scss/global';
 @import '../../scss/components/responsive-embed';
 @import '../../scss/grid/grid';
 
 @include test-module('Components') {
 
-  @include test('Responsive Embed [function]') {
-    $test: responsive-embed(3 by 4);
+  @include test('Ratio to Percentage [function]') {
+    $test: ratio-to-percentage(3 by 4);
     $expect: 4 / 3 * 100%;
 
     @include assert-equal($test, $expect,