From d5f5c3d7f2d92c180c56053c994a148afd63118a Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Wed, 20 Dec 2023 17:15:29 +0000 Subject: Adds factory_bot to rspec testing suite --- spec/factories/events.rb | 11 +++++++++++ spec/requests/events_spec.rb | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 spec/factories/events.rb (limited to 'spec') diff --git a/spec/factories/events.rb b/spec/factories/events.rb new file mode 100644 index 0000000..8fbba83 --- /dev/null +++ b/spec/factories/events.rb @@ -0,0 +1,11 @@ +FactoryBot.define do + factory :event do + name { "MyString" } + date { "2023-12-20" } + organisation + end + + factory :organisation do + name { "Smersh" } + end +end diff --git a/spec/requests/events_spec.rb b/spec/requests/events_spec.rb index f168576..96183ae 100644 --- a/spec/requests/events_spec.rb +++ b/spec/requests/events_spec.rb @@ -19,7 +19,7 @@ RSpec.describe "/events", type: :request do # adjust the attributes here as well. let(:valid_attributes) { # skip("Add a hash of attributes valid for your model") - { date: Date.new(2023, 1, 10), name: "Stunner", organisation_id: "2" } + build :event.attributes # build uses the factory and attributes converts to a hash.... } let(:invalid_attributes) { -- cgit v1.2.3