//
// Replace substring
//
@include describe("[function] str-replace") {

	$string: "this is a string";

	@include it("should expect the substring to be updated inside of string") {
		@include should(expect(
			flint-str-replace($string, "a", "an awesome")),
			to(be("this is an awesome string"))
		);
	}
}
