From: Colin Marshall Date: Wed, 27 Jan 2016 01:59:05 +0000 (-0700) Subject: Converted Map Deep Get test to True X-Git-Tag: v6.2.0-rc.1~57^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ea37240bd8c80e9b17f81c19cdc33521788d8c9;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Converted Map Deep Get test to True --- diff --git a/test/sass/_value.scss b/test/sass/_value.scss index 8e3be6267..7b30179e7 100755 --- a/test/sass/_value.scss +++ b/test/sass/_value.scss @@ -102,19 +102,17 @@ @include assert-equal($defaultColor, black, $defaultDescription); } - // TODO: Add spec for pow() -} - -@include describe('Map Deep Get') { - @include it('gets a value from a nested map') { + @include test('Map Deep Get [function]') { $map: ( one: ( two: 'three', ), ); - - @include should(expect(map-deep-get($map, one, two)), to(be('three'))); + $expect: 'three'; + + @include assert-equal(map-deep-get($map, one, two), $expect, + 'Gets a value from a nested map'); } -} -// TODO: Add spec for pow() + // TODO: Add spec for pow() +}