cfrancia / spectral

Fluent test assertions for Rust
Apache License 2.0
160 stars 13 forks source link

assert_that! macro requires import of function #14

Open milibopp opened 7 years ago

milibopp commented 7 years ago

This should not be needed, as the function can be used inside the macro.

Example:

use spectral::assert_that; // could be removed
assert_that!(3).is_equal_to(3);