mirror of
https://github.com/lloeki/package-ruby.git
synced 2025-12-06 01:54:41 +01:00
5 lines
110 B
Ruby
5 lines
110 B
Ruby
RSpec::Matchers.define :have_constant do |const|
|
|
match do |owner|
|
|
owner.const_defined?(const)
|
|
end
|
|
end
|