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

Add diff functionality #2

Open
arp242 opened this issue Aug 11, 2019 · 0 comments
Open

Add diff functionality #2

arp242 opened this issue Aug 11, 2019 · 0 comments

Comments

@arp242
Copy link
Owner

arp242 commented Aug 11, 2019

Doing something like this can be tedious for larger multi-line strings:

if l:got isnot# l:want
    call Errorf('want: %s\ngot:  %s\n', l:want, l:got)
endif

When a test fails, it's hard to see what exactly failed. Getting a diff makes this a lot easier:

let l:diff = Diff(l:got, l:want)
if l:diff isnot# ''
    call Errorf('%s', l:diff)
endif
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