summaryrefslogtreecommitdiffstats
path: root/src/components/molecules/forms/radio-group.test.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-05-30 19:44:37 +0200
committerArmand Philippot <git@armandphilippot.com>2022-05-31 23:15:11 +0200
commit994ad1bec193b2d1a6e0d38d6ef3f3d2bd66c3ea (patch)
tree53df625928d50ef11ceca6b4d0937d433b576aec /src/components/molecules/forms/radio-group.test.tsx
parentae384aec5084b9fb9f02166890686a37d1260ef2 (diff)
chore: add a RadioGroup component
Diffstat (limited to 'src/components/molecules/forms/radio-group.test.tsx')
-rw-r--r--src/components/molecules/forms/radio-group.test.tsx30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/components/molecules/forms/radio-group.test.tsx b/src/components/molecules/forms/radio-group.test.tsx
new file mode 100644
index 0000000..8171a49
--- /dev/null
+++ b/src/components/molecules/forms/radio-group.test.tsx
@@ -0,0 +1,30 @@
+import { render, screen } from '@test-utils';
+import RadioGroup from './radio-group';
+import { getOptions, initialChoice, legend } from './radio-group.fixture';
+
+describe('RadioGroup', () => {
+ it('renders a legend', () => {
+ render(
+ <RadioGroup
+ initialChoice={initialChoice}
+ legend={legend}
+ options={getOptions()}
+ />
+ );
+ expect(screen.findByRole('radiogroup', { name: legend })).toBeDefined();
+ });
+
+ it('renders the correct number of radio', () => {
+ const options = getOptions();
+
+ render(
+ <RadioGroup
+ initialChoice={initialChoice}
+ legend={legend}
+ options={options}
+ />
+ );
+ const radios = screen.getAllByRole('radio');
+ expect(radios).toHaveLength(options.length);
+ });
+});