summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortastytea2020-01-12 17:54:40 +0100
committertastytea2020-01-12 17:54:40 +0100
commitbd490e788cbe17c86777e353f815d1a573163ba5 (patch)
treefcf240952ff740f2059b48f89b6f6aa841ada724
parentc049af32122f646cc8fe0b940b1330e8740476c3 (diff)
downloadmastodonpp-bd490e788cbe17c86777e353f815d1a573163ba5.tar
mastodonpp-bd490e788cbe17c86777e353f815d1a573163ba5.tar.gz
mastodonpp-bd490e788cbe17c86777e353f815d1a573163ba5.zip
Remove test for Instance::get_proxy().
-rw-r--r--tests/test_instance.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_instance.cpp b/tests/test_instance.cpp
index 8e38275..646a271 100644
--- a/tests/test_instance.cpp
+++ b/tests/test_instance.cpp
@@ -65,13 +65,11 @@ SCENARIO ("mastopp::Instance")
}
THEN ("No exception is thrown")
- AND_THEN ("get_proxy() returns the set value.")
AND_THEN ("get_access_token() returns the set value.")
AND_THEN ("get_hostname() returns the set value.")
AND_THEN ("get_baseuri() returns the expected value.")
{
REQUIRE_FALSE(exception);
- REQUIRE(instance.get_proxy() == proxy);
REQUIRE(instance.get_access_token() == access_token);
REQUIRE(instance.get_hostname() == hostname);
REQUIRE(instance.get_baseuri() == (string("https://") += hostname));