test_that("multiplication is distributive", {
library(tidyverse)
library(tidygraph)
library(ralget)
library(testthat)
expect_true(v("a") * (v("b") + v("c")) == v("a")*v("b") + v("a")*v("c"))
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.