We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b90d9c7 commit cd108dbCopy full SHA for cd108db
tests/Util/UnitTest.php
@@ -96,14 +96,21 @@ public function testGetUnitWithStringAsUnit()
96
$this->assertSame("Hey! I'm cmfcmf", $this->unit->getUnit());
97
}
98
99
- public function testCelsiusFixture()
+ public function testCelsiusFix()
100
{
101
$this->givenThereIsAUnitWithUnit("celsius");
102
103
$this->assertSame("°C", $this->unit->getUnit());
104
105
106
- public function testFahrenheitFixture()
+ public function testMetricFix()
107
+ {
108
+ $this->givenThereIsAUnitWithUnit("metric");
109
+
110
+ $this->assertSame("°C", $this->unit->getUnit());
111
+ }
112
113
+ public function testFahrenheitFix()
114
115
$this->givenThereIsAUnitWithUnit("fahrenheit");
116
0 commit comments