Skip to content

Commit

Permalink
added comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jlangch committed Oct 17, 2023
1 parent 5858b56 commit dfb344f
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@

public class JsonlModuleTest {

// ------------------------------------------------------------------------
// String write
// ------------------------------------------------------------------------

@Test
public void test_write_str_basic() {
final Venice venice = new Venice();
Expand Down Expand Up @@ -105,6 +109,11 @@ public void test_write_str_collection_multi_value() {
" (jsonl/write-str [{:a 1 :d 1} {:b 2 :d 2} {:c 3 :d 3}])) "));
}


// ------------------------------------------------------------------------
// String read
// ------------------------------------------------------------------------

@Test
public void test_read_str_basic() {
final Venice venice = new Venice();
Expand Down Expand Up @@ -167,5 +176,16 @@ public void test_read_str_collection_multi_value() {
" (let [json @sw] \n" +
" (pr-str (jsonl/read-str json :key-fn keyword)))))"));
}


// ------------------------------------------------------------------------
// Spit
// ------------------------------------------------------------------------



// ------------------------------------------------------------------------
// Slurp
// ------------------------------------------------------------------------
}

0 comments on commit dfb344f

Please sign in to comment.