Lines Matching full:quote
102 ATF_REQUIRE_EQ("''", text::quote("", '\'')); in ATF_TEST_CASE_BODY()
103 ATF_REQUIRE_EQ("##", text::quote("", '#')); in ATF_TEST_CASE_BODY()
110 ATF_REQUIRE_EQ("'Some text\"'", text::quote("Some text\"", '\'')); in ATF_TEST_CASE_BODY()
111 ATF_REQUIRE_EQ("#Another'string#", text::quote("Another'string", '#')); in ATF_TEST_CASE_BODY()
118 ATF_REQUIRE_EQ("'Some\\'text'", text::quote("Some'text", '\'')); in ATF_TEST_CASE_BODY()
119 ATF_REQUIRE_EQ("#Some\\#text#", text::quote("Some#text", '#')); in ATF_TEST_CASE_BODY()
121 ATF_REQUIRE_EQ("'More than one\\' quote\\''", in ATF_TEST_CASE_BODY()
122 text::quote("More than one' quote'", '\'')); in ATF_TEST_CASE_BODY()
124 text::quote("Multiple quotes ''' together", '\'')); in ATF_TEST_CASE_BODY()
127 text::quote("'escape at the beginning", '\'')); in ATF_TEST_CASE_BODY()
129 text::quote("escape at the end'", '\'')); in ATF_TEST_CASE_BODY()