From f03ecebe4eb7c71f68c04af7ee0cb23b5ac18e54 Mon Sep 17 00:00:00 2001 From: JG Date: Mon, 23 May 2022 11:38:50 +0100 Subject: [PATCH] feature for viewing users as coordinator --- Gemfile | 1 + Gemfile.lock | 3 +++ features/users/data_coordinator.feature | 8 ++++++++ 3 files changed, 12 insertions(+) create mode 100644 features/users/data_coordinator.feature diff --git a/Gemfile b/Gemfile index 3c5572667..56c468b22 100644 --- a/Gemfile +++ b/Gemfile @@ -92,6 +92,7 @@ group :test do gem "cucumber-rails", require: false gem "database_cleaner" gem "factory_bot_rails" + gem "faker" gem "rspec-rails", require: false gem "selenium-webdriver", require: false gem "simplecov", require: false diff --git a/Gemfile.lock b/Gemfile.lock index d1fc3b569..17e3708ef 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -229,6 +229,8 @@ GEM factory_bot_rails (6.2.0) factory_bot (~> 6.2.0) railties (>= 5.0.0) + faker (2.21.0) + i18n (>= 1.8.11, < 2) ffi (1.15.5) formtastic (4.0.0) actionpack (>= 5.2.0) @@ -539,6 +541,7 @@ DEPENDENCIES dotenv-rails erb_lint factory_bot_rails + faker govuk-components govuk_design_system_formbuilder govuk_markdown diff --git a/features/users/data_coordinator.feature b/features/users/data_coordinator.feature new file mode 100644 index 000000000..d5d78add5 --- /dev/null +++ b/features/users/data_coordinator.feature @@ -0,0 +1,8 @@ +Feature: Data Coordinator Features + Background: + Given I am signed in as "Data Coordinator" + + Scenario: Viewing users + Given there are multiple users in the same organization + And I visit the users page + Then I see information about those users