Mattias Fjellvang
Mattias Fjellvang
Should support the "package" parameter, so you can do e.g. ```dart Svg( 'some-asset.svg', package: 'some_third_party_package', ),
It would be nice if this could be run on macOS perhaps through a brew package. Any plans to do this? Also, it would be nice without having to install...
From the looks of it this looks like a very interesting package - so good job so far! I do, however, think this documentation needs some more information on what...
It fails often with no error. I have tried appending the full error ,and it outputs: Warning: Krake API call failed. (Error: ). Full: NULL (`WP_CLI::warning( sprintf( 'Krake API call...
**Describe the bug** The 'is-sticky' class is not being added, despite the "position:sticky" is being added by stickybits. I can trigger the error if I scroll down a page very...
After installing and running phpunit I get error: Fatal error: Class 'Doctrine\DBAL\Driver\PDOMySql\Driver' not found in /vendor/laravel/framework/src/Illuminate/Database/MySqlConnection.php on line 59 Adding: `"doctrine/dbal": "~2.3"` to composer, and then running update, solves the...
Error in `testStoreSuccess()` method on page 141. In line 15 in the codeblock you have: ``` $this->assertRedirectedToRoute('posts.index', ['flash']); ``` But should be: ``` $this->assertRedirectedToRoute('posts.index', [], ['flash']); ```
In chapter 10 under "Redirections" you post the following example: ``` public function testStore() { Input::replace($input = ['title' => 'My Title']); $this->mock ->shouldReceive('create') ->once() ->with($input); $this->app->instance('Post', $this->mock); $this->call('POST', 'posts'); $this->assertRedirectedToRoute('posts.index');...
I am trying to follow the chapter, and everything goes fine until page 109 "Return Values From Mocked Methods". Making the test `testDoesNotOverwriteFile` as described works: ``` public function testItDoesNotOverwrite()...
I have just installed guard and phpunit2. When running "guard init" in my project folder, I get following error: ``` [canfiax:~/lesson] $ guard init 16:30:12 - ERROR - Could not...