You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "paleolimbot (via GitHub)" <gi...@apache.org> on 2023/06/09 12:32:29 UTC

[GitHub] [arrow] paleolimbot commented on a diff in pull request #35955: GH-35949: [R] CSV File reader options class objects should print the selected values

paleolimbot commented on code in PR #35955:
URL: https://github.com/apache/arrow/pull/35955#discussion_r1224240655


##########
r/tests/testthat/test-dataset-csv.R:
##########
@@ -574,3 +574,11 @@ test_that("open_delim_dataset params passed through to open_dataset", {
 
   expect_equal(ds$time, "16-01-2023")
 })
+

Review Comment:
   One more test here for the data access part (as opposed to the printing part)? Like:
   
   ```r
   test_that("CSV options field access", {
     options <- CsvReadOptions$create(skip_rows = 102)
     expect_identical(options$skip_rows, 102)
     # ... for all the options we just added the ability to access
   })
   ```
   
   ...for each option we added a



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org