Home | History | Annotate | Download | only in base

Lines Matching defs:homepage

21   std::string homepage = "http://google.com";
22 ASSERT_FALSE(settings.GetString("global.homepage", &homepage));
23 ASSERT_EQ(std::string("http://google.com"), homepage);
28 settings.SetString("global.homepage", "http://scurvy.com");
30 homepage = "http://google.com";
31 ASSERT_TRUE(settings.GetString("global.homepage", &homepage));
32 ASSERT_EQ(std::string("http://scurvy.com"), homepage);