Nothing
describe("S7_data", {
text <- new_class("text", class_character)
it("retrieves .data", {
x <- text("hi")
expect_equal(S7_data(x), "hi")
})
it("strips properties", {
text <- new_class("text", class_character, properties = list(x = class_integer))
x <- text("hi", x = 10L)
expect_equal(attributes(S7_data(x)), NULL)
})
it("preserves non-property attributes when retrieving .data", {
val <- c(foo = "hi", bar = "ho")
expect_equal(names(S7_data(text(val))), names(val))
})
it("lets you set data", {
val <- c(foo = "hi", bar = "ho")
x <- text("foo")
S7_data(x) <- "bar"
expect_equal(S7_data(x), "bar")
})
})
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.