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

Added rudimentary methods for writing data #166

Closed
wants to merge 29 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
17b0c5a
rudimentary methods for writing data
chris-kruining Mar 16, 2020
0c77a8d
fixed style issues
chris-kruining Mar 16, 2020
60af694
Update Repository.php
chris-kruining Mar 16, 2020
1f9f93c
Update Repository.php
chris-kruining Mar 16, 2020
2a6ea33
Update Repository.php
chris-kruining Mar 16, 2020
9389d3f
Update Repository.php
chris-kruining Mar 19, 2020
b2d7641
Update WorkingCopy.php
chris-kruining Mar 19, 2020
253a6c6
no clue
chris-kruining Mar 19, 2020
7da46a9
Update WorkingCopyTest.php
chris-kruining Mar 19, 2020
bb31f54
Update workingcopy.md
chris-kruining Mar 19, 2020
ec1c5b2
Update repository.md
chris-kruining Mar 19, 2020
a86d63e
Update WorkingCopyTest.php
chris-kruining Mar 19, 2020
cbb03c0
Update RepositoryTest.php
chris-kruining Mar 19, 2020
33962b1
Update Repository.php
chris-kruining Mar 19, 2020
4c27764
Update RepositoryTest.php
chris-kruining Mar 19, 2020
278389e
Update Repository.php
chris-kruining Mar 19, 2020
2bf59f3
Update workingcopy.md
chris-kruining Mar 19, 2020
e3e796f
Update Repository.php
chris-kruining Mar 19, 2020
45d538c
Update doc/repository.md
GrahamCampbell Mar 20, 2020
7264320
Update doc/repository.md
GrahamCampbell Mar 20, 2020
9749f07
Update doc/workingcopy.md
GrahamCampbell Mar 20, 2020
bb0ddeb
lets make the actual regex work...
chris-kruining Mar 20, 2020
8301907
Fixed signatures and doc
GrahamCampbell Mar 21, 2020
058e88e
Fixed phpdoc
GrahamCampbell Mar 21, 2020
522e378
Update workingcopy.md
GrahamCampbell Mar 21, 2020
57902ff
Actually support having a commit author as documented
GrahamCampbell Mar 21, 2020
12d2482
Update WorkingCopyTest.php
GrahamCampbell Mar 21, 2020
c198250
Fixed CS
GrahamCampbell Mar 21, 2020
2d5d922
Fixed tests
GrahamCampbell Mar 21, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 16 additions & 0 deletions tests/Gitonomy/Git/Tests/RepositoryTest.php
Expand Up @@ -54,6 +54,22 @@ public function testGetDescription($repository)
{
$this->assertSame("Unnamed repository; edit this file 'description' to name the repository.\n", $repository->getDescription());
}

/*
* @dataProvider provideFoobar
*/
public function testPull($repository)
{
$this->assert($repository->pull());
chris-kruining marked this conversation as resolved.
Show resolved Hide resolved
}

/*
* @dataProvider provideFoobar
*/
public function testPush($repository)
{
$this->assert($repository->push());
}

/**
* @dataProvider provideFoobar
Expand Down