Remove test for Instance::get_proxy().
continuous-integration/drone/push Build is passing Details

This commit is contained in:
tastytea 2020-01-12 17:54:40 +01:00
parent c049af3212
commit bd490e788c
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 0 additions and 2 deletions

View File

@ -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));