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 tests to pkg/commands/git - Part 7 #291

Merged
merged 4 commits into from
Sep 25, 2018
Merged

Add tests to pkg/commands/git - Part 7 #291

merged 4 commits into from
Sep 25, 2018

Conversation

antham
Copy link
Contributor

@antham antham commented Sep 18, 2018

No description provided.

@codecov-io
Copy link

Codecov Report

Merging #291 into master will increase coverage by 0.44%.
The diff coverage is 100%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #291      +/-   ##
==========================================
+ Coverage   94.83%   95.28%   +0.44%     
==========================================
  Files           9        9              
  Lines        1550     1547       -3     
==========================================
+ Hits         1470     1474       +4     
+ Misses         78       72       -6     
+ Partials        2        1       -1
Impacted Files Coverage Δ
pkg/commands/git.go 91.57% <100%> (+2.55%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update fce895e...55a9c82. Read the comment docs.

@codecov-io
Copy link

codecov-io commented Sep 18, 2018

Codecov Report

Merging #291 into master will increase coverage by 0.39%.
The diff coverage is 100%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #291      +/-   ##
==========================================
+ Coverage   93.63%   94.02%   +0.39%     
==========================================
  Files          12       12              
  Lines        1633     1624       -9     
==========================================
- Hits         1529     1527       -2     
+ Misses        101       95       -6     
+ Partials        3        2       -1
Impacted Files Coverage Δ
pkg/commands/git.go 91.57% <100%> (+2.51%) ⬆️
pkg/utils/utils.go 75.25% <0%> (-1.22%) ⬇️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 80d6bbe...e9245cd. Read the comment docs.

@antham
Copy link
Contributor Author

antham commented Sep 18, 2018

@jesseduffield could you review pls ?

}

// Diff returns the diff of a file
func (c *GitCommand) Diff(file File) string {
cachedArg := ""
trackedArg := "--"
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure what the common convention is, but from my perspective it's hard to know what a variable represents until you see it get used, so I'm not sure what the use of declaring variables at the top of the function is, when you're not going to know what they're used for until later on

Copy link
Contributor Author

@antham antham Sep 19, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In my opinion it's easier to see variables defined in the function at the top, it's your initial state, you know this is what's in use in the whole function and if you don't go through any condition, the value is what you will get. If you have many variable and a long function, it could be hard to check where a variable is defined to get its initial value. Here you know everything is at the top so it eases the look up. I would say it's not an absolute rule as usual you have case where it's not ok but I think here it fits well.

@@ -1,35 +0,0 @@
#!/bin/bash
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it looks like this file covers more test cases than is covered in this PR

Copy link
Contributor Author

@antham antham Sep 19, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To know if a test cover a function you have to look at codecov, https://codecov.io/gh/jesseduffield/lazygit/pull/291/src/pkg/commands/git.go?before=pkg/commands/git.go :
capture d ecran 2018-09-19 a 11 34 44

You have less cases but it covers every branches in function

Copy link
Owner

@jesseduffield jesseduffield left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

left some comments :)

@antham
Copy link
Contributor Author

antham commented Sep 21, 2018

I forgot to ping again @jesseduffield

Copy link
Owner

@jesseduffield jesseduffield left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, great work again :)

@jesseduffield jesseduffield merged commit d0a3f1e into jesseduffield:master Sep 25, 2018
@antham antham deleted the add-tests-part-7 branch September 25, 2018 11:48
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

Successfully merging this pull request may close these issues.

3 participants