diff C++/tests/Json/main.cpp @ 407:25ef13e25338

Json: remove undefined, not part of JSON spec
author David Demelier <markand@malikania.fr>
date Tue, 06 Oct 2015 09:05:53 +0200
parents d485d36a8de1
children ee155fc84c56
line wrap: on
line diff
--- a/C++/tests/Json/main.cpp	Mon Oct 05 20:24:48 2015 +0200
+++ b/C++/tests/Json/main.cpp	Tue Oct 06 09:05:53 2015 +0200
@@ -83,17 +83,6 @@
  * json::Value constructors
  * -------------------------------------------------------- */
 
-TEST(Constructors, undefined)
-{
-	try {
-		json::Value value;
-
-		ASSERT_TRUE(value.isUndefined());
-	} catch (const json::Error &ex) {
-		FAIL() << ex.what();
-	}
-}
-
 TEST(Constructors, null)
 {
 	try {