From 7f085540c6754ed04e9f7ab9acc415570b4c02a9 Mon Sep 17 00:00:00 2001 From: Jack Draper Date: Mon, 12 Jul 2021 00:22:56 +0100 Subject: [PATCH] Update README.md --- README.md | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/README.md b/README.md index 5e666982..24e03c67 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ I use this kata as part of my work as a technical coach. I wrote a lot about the ## How to use this Kata -The simplest way is to just clone the code and start hacking away improving the design. You'll want to look at the ["Gilded Rose Requirements"](https://github.com/emilybache/GildedRose-Refactoring-Kata/tree/master/GildedRoseRequirements.txt) which explains what the code is for. I strongly advise you that you'll also need some tests if you want to make sure you don't break the code while you refactor. +The simplest way is to just clone the code and start hacking away improving the design. You'll want to look at the ["Gilded Rose Requirements"](https://github.com/KoalaBotUK/GildedRose-Refactoring-Kata/tree/master/GildedRoseRequirements.txt) which explains what the code is for. I strongly advise you that you'll also need some tests if you want to make sure you don't break the code while you refactor. You could write some unit tests yourself, using the requirements to identify suitable test cases. I've provided a failing unit test in a popular test framework as a starting point for most languages. @@ -20,18 +20,6 @@ Alternatively, use the "Text-Based" tests provided in this repository. (Read mor Whichever testing approach you choose, the idea of the exercise is to do some deliberate practice, and improve your skills at designing test cases and refactoring. The idea is not to re-write the code from scratch, but rather to practice designing tests, taking small steps, running the tests often, and incrementally improving the design. -### Gilded Rose Requirements in other languages - -- [English](GildedRoseRequirements.txt) -- [Español](GildedRoseRequirements_es.md) -- [Français](GildedRoseRequirements_fr.md) -- [日本語](GildedRoseRequirements_jp.md) -- [Português](GildedRoseRequirements_pt-BR.md) -- [Русский](GildedRoseRequirements_ru.txt) -- [ไทย](GildedRoseRequirements_th.md) -- [中文](GildedRoseRequirements_zh.txt) -- [한국어](GildedRoseRequirements_kr.md) - ## Text-Based Approval Testing This code comes with comprehensive tests that use this approach. For information about how to run them, see the [texttests README](https://github.com/emilybache/GildedRose-Refactoring-Kata/tree/master/texttests)