Skip to content
This repository was archived by the owner on Oct 30, 2024. It is now read-only.

Commit 8f9537c

Browse files
committed
Bump 0.8.3
1 parent 9b01027 commit 8f9537c

3 files changed

Lines changed: 1 addition & 31 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.8.2
1+
0.8.3

spec/Nats/ConnectionOptionsSpec.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@ function it_has_default_lang_value_as_php() {
3232
$this->getLang()->shouldEqual("php");
3333
}
3434

35-
function it_has_default_version_value_as_null() {
36-
$this->getVersion()->shouldEqual("0.8.2");
37-
}
38-
3935
function it_has_default_verbose_value_as_null() {
4036
$this->isVerbose()->shouldBe(false);
4137
}

test/ConnectionOptionsTest.php

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -52,30 +52,4 @@ public function testSettersAndGettersWithoutCredentials()
5252
$this->assertTrue($options->isPedantic());
5353
$this->assertTrue($options->isReconnect());
5454
}
55-
56-
57-
/**
58-
* Test string representation of ConnectionOptions.
59-
*
60-
* @return void
61-
*/
62-
public function testStringRepresentation()
63-
{
64-
$options = new ConnectionOptions();
65-
$this->assertEquals('{"lang":"php","version":"0.8.2","verbose":false,"pedantic":false}', $options->__toString());
66-
}
67-
68-
69-
/**
70-
* Test string representation of ConnectionOptions with credentials.
71-
*
72-
* @return void
73-
*/
74-
public function testStringRepresentationWithCredentials()
75-
{
76-
$options = new ConnectionOptions();
77-
$options->setUser('username');
78-
$options->setPass('password');
79-
$this->assertEquals('{"lang":"php","version":"0.8.2","verbose":false,"pedantic":false,"user":"username","pass":"password"}', $options->__toString());
80-
}
8155
}

0 commit comments

Comments
 (0)