mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Add DSL for be_truthy
and be_falsey
This commit is contained in:
parent
9befd5ee4f
commit
8c6552a995
1 changed files with 24 additions and 0 deletions
|
@ -79,5 +79,29 @@ module Spectator::DSL
|
||||||
macro be_false
|
macro be_false
|
||||||
eq(false)
|
eq(false)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Indicates that some value should be truthy.
|
||||||
|
# This means that the value is not `false` and not `nil`.
|
||||||
|
#
|
||||||
|
# Examples:
|
||||||
|
# ```
|
||||||
|
# expect(123).to be_truthy
|
||||||
|
# expect(true).to be_truthy
|
||||||
|
# ```
|
||||||
|
macro be_truthy
|
||||||
|
::Spectator::Matchers::TruthyMatcher.new(true)
|
||||||
|
end
|
||||||
|
|
||||||
|
# Indicates that some value should be falsey.
|
||||||
|
# This means that the value is either `false` or `nil`.
|
||||||
|
#
|
||||||
|
# Examples:
|
||||||
|
# ```
|
||||||
|
# expect(false).to be_falsey
|
||||||
|
# expect(nil).to be_falsey
|
||||||
|
# ```
|
||||||
|
macro be_falsey
|
||||||
|
::Spectator::Matchers::TruthyMatcher.new(false)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue