Henning Kowalk

Results 5 comments of Henning Kowalk

> Expected output: files named `2018-12-0{1,2,3}.csv` > Actual output: files named `2018120{1,2,3}.csv` > > ``` > % cat test.csv > date,int > 2018-12-01,1 > 2018-12-02,2 > 2018-12-03,3 > > %...

By whole module, do you mean e.g. the whole src/bin/server.rs file but not necessarily the whole content of the src/bin/ folder?

Is there any reason for the fact that functions in src/bin/server.rs (e.g. register_user) return the diesel query result when all that is checked by the front-end is `result != false`?...

A user on the #rust-beginners irc recommended a nice approach whereby the functions have the connection set up depending on whether a test is executed or not (through marking with...

I'm working on the server.rs unit tests and I'm done with all but the feed() function. Since there is another issue open which hints at a rewrite of that function,...