We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 474711c + 97e3d6c commit df9c27cCopy full SHA for df9c27c
.gitignore
@@ -9,3 +9,4 @@ build
9
/gradlew.bat
10
.gitmodules
11
src/main/
12
+.idea
src/test/java/org/json/junit/JSONPointerTest.java
@@ -78,6 +78,11 @@ public void uriFragmentNotation() {
78
assertSame(document.get("foo"), query("#/foo"));
79
}
80
81
+ @Test
82
+ public void uriFragmentNotationRoot() {
83
+ assertSame(document, query("#"));
84
+ }
85
+
86
@Test
87
public void uriFragmentPercentHandling() {
88
assertSame(document.get("c%d"), query("#/c%25d"));
0 commit comments