Nothing
.setUp <- function() {}
.tearDown <- function() {}
test.strings <- function()
{
json <- "\"\""
x <- fromJSON( json )
checkIdentical( x, "" )
json <- "\"hello world\""
x <- fromJSON( json )
checkIdentical( x, "hello world" )
json <- "\"hello\\ttab\""
x <- fromJSON( json )
checkIdentical( x, "hello\ttab" )
json <- "\"hello\\\"quote\""
x <- fromJSON( json )
checkIdentical( x, "hello\"quote" )
#really long string
s <- paste( 1:100000, collapse = "-" )
json <- paste("\"", s, "\"", sep="" )
x <- fromJSON( json )
checkIdentical( x, s )
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.