Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expectation refactoring #217

Closed
hadley opened this issue Jan 9, 2015 · 0 comments
Closed

Expectation refactoring #217

hadley opened this issue Jan 9, 2015 · 0 comments

Comments

@hadley
Copy link
Member

hadley commented Jan 9, 2015

Use lazyeval to simplify NSE handling.

label <- function(x) {
  paste(deparse(lazyeval::lazy(expected)$expr), collapse = "")
}

expect_identical <- function(actual, expected) {
  if (identical(actual, expected)) {
    success()
  }

  same <- compare(expected, actual)
  if (same$equal) {
    failure(label(actual), "is equal but not identical to ", label(expected))
  } else {
    diff <- paste0(same, collapse = "\n")
    failure(
      label(actual),  "is not identical to ", label(expected), 
      ". Differences: \n", same$message
    )
  }
}
@hadley hadley changed the title Extract out create expectation function Expectation refactoring Feb 18, 2016
@hadley hadley closed this as completed in cb04f8c Feb 20, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant