Skip to content

Commit 7e4daa8

Browse files
Merge pull request #3 from daylerees/master
Fix typo and test loading.
2 parents ed60089 + a6d9811 commit 7e4daa8

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ php:
33
- 5.5
44
- 5.4
55
- 5.3
6+
before_script:
7+
- composer install --dev --prefer-source

phpunit.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3-
<phpunit colors="true">
3+
<phpunit colors="true" bootstrap="vendor/autoload.php">
44
<testsuites>
55
<testsuite name="Tiny Test Suite">
66
<directory>./tests/ZackKitzmiller/TestCase.php</directory>

tests/Zackkitzmiller/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function testFromTiny() {
1818
$this->assertEquals(5, $reversed);
1919
}
2020

21-
public function testReveringRandomInt() {
21+
public function testReversingRandomInt() {
2222
for ($i = 0; $i <= 100; $i++) {
2323
$this->assertEquals($this->tiny->from($this->tiny->to($i)), $i);
2424
}

0 commit comments

Comments
 (0)