//
// Replaces old by new in $list
//
@include describe("[function] replace") {

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

    @include it("should expect value to be replaced in list") {
        @include should(expect(
            flint-replace($list, "three", "two, again")),
            to(be(("one", "two", "two, again")))
        );
    }
}
