Sha256: 92757efee4a05d55eeadee14ddcb0df4c2985c37e76469d43f0e580544f0f97c

Contents?: true

Size: 267 Bytes

Versions: 3

Compression:

Stored size: 267 Bytes

Contents

/*
 * Remove value from list
 */
@include describe("[function] remove") {

	$list: ("one", "two", "three");

	@include it("should expect value to be removed from list") {
		@include should(expect(
			flint-remove($list, "two")),
			to(be(("one", "three")))
		);
	}
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
flint-gs-2.0.6 tests/input/functions/lib/_remove.scss
flint-gs-2.0.5 tests/input/functions/lib/_remove.scss
flint-gs-2.0.4 tests/input/functions/lib/_remove.scss