Lines Matching defs:has
185 ATF_TEST_CASE(has);
186 ATF_TEST_CASE_HEAD(has)
188 set_md_var("descr", "Tests the config::has function");
190 ATF_TEST_CASE_BODY(has)
196 ATF_REQUIRE(tools::config::has(v->lc));
200 ATF_REQUIRE(!tools::config::has(v->uc));
203 ATF_REQUIRE(!tools::config::has("foo"));
204 ATF_REQUIRE(!tools::config::has("BAR"));
205 ATF_REQUIRE(!tools::config::has("atf_foo"));
206 ATF_REQUIRE(!tools::config::has("ATF_BAR"));
207 ATF_REQUIRE(!tools::config::has("atf_shel"));
208 ATF_REQUIRE(!tools::config::has("atf_shells"));
218 ATF_ADD_TEST_CASE(tcs, has);