From faf257bfeb5968bf04c18fbf22dca56d92e84440 Mon Sep 17 00:00:00 2001 From: Olle Harstedt Date: Mon, 20 Apr 2020 12:13:16 +0200 Subject: [PATCH] Dev: Add stump function --- .../15997-ip-anonymize/IpAddressAnonymizeTest.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/functional/acceptance/15997-ip-anonymize/IpAddressAnonymizeTest.php b/tests/functional/acceptance/15997-ip-anonymize/IpAddressAnonymizeTest.php index f2c8e2229b8..aca8c9355d3 100644 --- a/tests/functional/acceptance/15997-ip-anonymize/IpAddressAnonymizeTest.php +++ b/tests/functional/acceptance/15997-ip-anonymize/IpAddressAnonymizeTest.php @@ -83,4 +83,12 @@ public function testIpAnonymizeInActiveSurvey() */ $this->assertTrue((isset($models[0]->ipaddr)) && ($models[0]->ipaddr==='127.0.0.0')); } + + /** + * Test so that previous behaviour is still working. + */ + public function testNormalActiveSurvey() + { + // TODO: As above, but without ip anon and ip === 127.0.0.1 + } }