mirror of
				https://github.com/msberends/AMR.git
				synced 2025-11-04 11:45:35 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			659 B
		
	
	
	
		
			R
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			659 B
		
	
	
	
		
			R
		
	
	
	
	
	
context("clipboard.R")
 | 
						|
 | 
						|
test_that("clipboard works", {
 | 
						|
 | 
						|
  if (!clipr::clipr_available() & Sys.info()['sysname'] == "Linux") {
 | 
						|
    # try to support on X11, by setting the R variable DISPLAY
 | 
						|
    Sys.setenv(DISPLAY = "localhost:10.0")
 | 
						|
  }
 | 
						|
 | 
						|
  skip_if_not(clipr::clipr_available())
 | 
						|
 | 
						|
  clipboard_export(antibiotics)
 | 
						|
  expect_identical(as.data.frame(antibiotics, stringsAsFactors = FALSE),
 | 
						|
                   clipboard_import())
 | 
						|
 | 
						|
  clipboard_export(septic_patients[1:100,])
 | 
						|
  expect_identical(as.data.frame(tbl_parse_guess(septic_patients[1:100,]), stringsAsFactors = FALSE),
 | 
						|
                   clipboard_import(guess_col_types = TRUE, stringsAsFactors = FALSE))
 | 
						|
})
 |