mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
6 lines
122 B
Ruby
6 lines
122 B
Ruby
|
RSpec::Matchers.define :be_a_symlink_to do |expected|
|
||
|
match do |actual|
|
||
|
File.identical?(expected, actual)
|
||
|
end
|
||
|
end
|