-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
12390fd
commit b236c1e
Showing
3 changed files
with
134 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# A list of observed potential bugs to investigate | ||
|
||
## Conjured Items | ||
|
||
"We have recently signed a supplier of conjured items. This requires an update to our system: | ||
"Conjured" items degrade in Quality twice as fast as normal items" | ||
|
||
``` | ||
>go run texttest_fixture.go 5 | ||
... | ||
-------- day 0 -------- | ||
Name, SellIn, Quality | ||
... | ||
&{Conjured Mana Cake 3 6} | ||
... | ||
-------- day 1 -------- | ||
&{Conjured Mana Cake 2 5} | ||
... | ||
-------- day 2 -------- | ||
&{Conjured Mana Cake 1 4} | ||
... | ||
-------- day 3 -------- | ||
&{Conjured Mana Cake 0 3} | ||
... | ||
-------- day 4 -------- | ||
&{Conjured Mana Cake -1 1} | ||
... | ||
-------- day 5 -------- | ||
&{Conjured Mana Cake -2 0} | ||
``` | ||
|
||
Appears that Qaulity jumps by 2 on data 4 (i.e. quality is never 2) | ||
|
||
## aged brie | ||
|
||
"Once the sell by date has passed, Quality degrades twice as fast" | ||
"Aged Brie" actually increases in Quality the older it gets | ||
initial behaviour is that quality increases twice as fast after SellIn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters