28 lines
808 B
28 lines
808 B
3 years ago
|
require "rails_helper"
|
||
|
|
||
|
RSpec.describe FormHandler do
|
||
|
describe "Get all forms" do
|
||
|
it "should be able to load all the forms" do
|
||
|
form_handler = FormHandler.instance
|
||
|
all_forms = form_handler.forms
|
||
|
expect(all_forms.count).to be >= 1
|
||
|
expect(all_forms["test_form"]).to be_a(Form)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe "Get specific form" do
|
||
|
it "should be able to load a specific form" do
|
||
|
form_handler = FormHandler.instance
|
||
|
form = form_handler.get_form("test_form")
|
||
|
expect(form).to be_a(Form)
|
||
|
expect(form.all_pages.count).to eq(18)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
it "should only load the form once at boot time" do
|
||
|
form_handler = FormHandler.instance
|
||
|
expect(Form).not_to receive(:new).with("test_form")
|
||
|
expect(form_handler.get_form("test_form")).to be_a(Form)
|
||
|
end
|
||
|
end
|